python环境:python 3.8 报错信息: WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.Collecting pip3  WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after…
使用pip安装pymysql出错;Could not find a version that satisfies the requirement cryptography (from pymysql) (from versions: ) No matching distribution found for cryptography (from pymysql) 今天使用pip安装pymysql时出现如下错误: Could not find a version that satisfies the…
出现多次使用pip安装包时提示以下报错: ERROR: Could not find a version that satisfies the requirement <package> (from versions: none)ERROR: No matching distribution found for <package> 看提示信息说是木有匹配的包版本,那既然这样就制定安装的Python的三方包的版本,但是也不行,那说明可能不是包版本问题. 网上查了下说有可能是网络问题,…
前言 我在使用pip install opencv-python 时报错 Could not find a version that satisfies the requirement opencv (from versions: ) No matching distribution found for opencv 树莓派的镜像是默认装的镜像,没怎么装过其他东西的.我查看了python的版本,python是2.7版本的,树莓派镜像默认是装好了python2.分析原因,python2版本过久,无…
安装xml库发生报错 pip3 install xml Collecting xml Could not find a version that satisfies the requirement xml (from versions: ) No matching distribution found for xml 尝试安装lxml进行代替 root@5a968be9a4aa:/home/ubuntu/publisher_info# pip3 install lxml Collecting l…
pip install win32api pip install pywin32 都会提示错误,如下: Could not find a version that satisfies the requirement win32api (from versions: ) No matching distribution found for win32api 改为 pip install pypiwin32 成功解决.…
一.环境使用python3.7时,用pip安装openpyxl出现如下错误: 系统环境:windows10家庭版Python版本:python3.7.1IDE:sublime_text 3二. 解决方案按照提示所示是其中一个原因是pip版本过低,需要更新pip:python -m pip install --upgrade pip由于python国内网络不稳定,一直报错,升级了很多次才成功.然后继续还是报错: 可能考虑到是python国内网络的问题,这时我们用国内的镜像源来加速.pip inst…
今天用pip安装skimage时报错: 这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 命令改为: pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 或者 pip3 install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 最后成功安装:…
今天在Windows下通过Pycharm安装Tensorflow时遇到两个问题: 使用pip安装其实原理都相同,只不过Pycharm是图形化的过程! 1.由于使用国外源总是导致Timeout 解决方法是在Pycharm中添加清华源 https://mirrors.aliyun.com/pypi/simple/(或者其他的国内源) 2.替换成清华源后安装报错: ERROR: Could not find a version that satisfies the requirement tensor…
今天ytkah在安装python3组件时提示如下错误,这个是缺少依赖的问题,就试着用pip3 install dateutil,但还是提示同样的错误,怎么处理呢? Could not find a version that satisfies the requirement dateutil (from versions: ) No matching distribution found for dateutil 在https://pypi.org/project/python-dateutil…
Python Imageing Library 简称 PIL Python常用的图像处理库之一 Pillow是PIL一个fork. C:\Users\dangzhengtao>pip install PIL Collecting PIL Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribution found for PIL 更换为: C:\Users\…
python3安装PIL提示如下错误,安装指令是pip3 install PIL,这个是因为PIL(Python Imaging Library)是Python中一个强大的图像处理库,但目前其只支持到Python2.7. pillow是PIL的一个分支,虽是分支但是其与PIL同样也具有很强的图像处理库. Could not find a version that satisfies the requirement pil (from versions: ) No matching distrib…
不多说,直接上干货! 问题详情 这个问题,很普遍.如我这里想实现,Windows下Anaconda2 / Anaconda3里正确下载安装用来向微信好友发送消息的itchat库. 见,我撰写的 全网最全的Windows下Anaconda2 / Anaconda3里正确下载安装用来向微信好友发送消息的itchat库(图文详解) 出现: PS C:\Anaconda3\Scripts> pip3.exe install itchat Collecting itchat Could not find…
引言: Tensorflow大名鼎鼎,这里不再赘述其为何物.这里讲描述在安装python包的时候碰到的“No matching distribution found for tensorflow”,其原因以及如何解决. 简单的安装tensorflow这里安装的tensorflow的cpu版本,gpu版本可以自行搜索安装指南,或者参考如下指令: pip3 install tensorflow #cpu 这里使用的python 3.6.3版本. pip3 install tensorflow-gpu…
安装opencv的时候,出现numpy的版本不匹配,卸载了不匹配的版本,重新安装却是一点用都没有,后面尝试了一下这里的提示pip更新,居然安装成功了,看来pip的版本过低真是误事啊. 报错是: Could not find a version that satisfies the requirement numpy==1.13.3 (from versions: 1.14.5, 1.14.6, 1.15.0rc2, 1.15.0, 1.15.1, 1.15.2, 1.15.3, 1.15.4,…
centos7 + python3 安装 scrapy 时候报错,错误信息如下: Could not find a version that satisfies the requirement Twisted>= (from Scrapy) (from versions: ) No matching distribution found (from Scrapy) 解决办法: 官网下载: http://twistedmatrix.com/trac/wiki/Downloads 把下载的源码包上传…
今天晚上一直在安装pandas,天杀的,真的是太难了.后来发现提示: Could not find a version that satisfies the requirement numpy>= (from pan das==) (from versions: ) No matching distribution found () 更新numpy的版本步骤如下: 1.查看当前numpy安装包版本:pip  show   numpy 2.百度需要的numpy版本:  https://pypi.o…
今天使用pip安装pymysql时出现如下错误: Could not find a version that satisfies the requirement cryptography (from pymysql) (from versions: )No matching distribution found for cryptography (from pymysql) 使用pip安装其他模块时也可能出现上述错误,主要原因是网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 因此命令可以使用…
目的:robotframe-ride用于接口测试 遇到的问题: 1.mac终端pip安装robotframework-ride后 pip install robotframework-ride (pip不行的话尝试sudo easy_install ) 启动ride.py报: wxPython not found.You need to install wxPython 2.8.12.1 with unicode support to run RIDE. 2.于是pip安装wxPython 2.…
Tensorflow 需要 Python 3.5/3.6  64bit 版本: 具体的安装方式可查看:https://www.tensorflow.org/install/install_windows 命令提示符中输入 python 即可启动并查看当前版本: 查看具体的版本信息可输入: python -v 下载新的64bit 的 Python 版本进行安装即可. Windows  Python3.6.5 64bit 下载地址:https://www.python.org/ftp/python/…
参考原文:https://blog.csdn.net/u012592062/article/details/51966649 这时我们用国内的镜像源来加速 pip install 包名-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com --trusted-host pypi.douban.com 这是为了获得ssl证书的认证 执行成功 每次都要输入这么一大长串,不方便也不容易记忆,可以这样来配置,一劳永逸 1 在当前用…
可能有的小伙伴在安装dns.resolver的时候会遇到这个问题: 我百度的时候别人是: pip install dns-python 但是我这样安装也还是错误.有些时候是这个包改名了所以你没有搜索到.那么这里给大家分享一个解决的方案可以直接pip search dns 由此找到包名:dnspython pip install dnspython#通过这样成功安装…
安装完成即可解决无法引入PIL的问题.…
ERROR: Command errored out with exit status 1: command: /usr/local/dmahz/p_book_data/bin/python3.9 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-yqn97g8t/pyyaml_30670ccf25cc4caf94c339671933c1ca/setup.py'"'"'…
转:https://blog.csdn.net/yanlisuo/article/details/81357305 转:https://blog.csdn.net/dyrlovewc/article/details/53142798 昨天晚上安装python get-pip.py时总是不成功,今天找了几个解决办法,晚上回去试一试. 1.网上说是网络问题,要使用国内镜像源加速: python get-pip.py -i http://pypi.douban.com/simple/ --truste…
原文作者:aircraft 原文链接:https://www.cnblogs.com/DOMLX/p/10227403.html 今天在安装mysql-python的时候报了很多的错误,其中一条就是这样的. Could not find a version that satisfies mysql-python... 找不到满意的版本,这时就是我们的pip可能需要升级了,所以使用 python -m pip install --upgrade pip 然后继续尝试发现还是不行,会报相同的错误,这…
python安装tensorflow报错:python No matching distribution found for tensorflow==1.12.0 python版本是3.7.2 要安装的tensorflow版本是1.12.0 pip版本是18.1 安装操作是在pycharm上进行操作的. 但是一安装就报错:python No matching distribution found for tensorflow==1.12.0 解决办法: 将python进行退版本,也就是卸载当前这…
当在Windows环境中使用npm install或者yarn 安装依赖时,可能会出现如下类似的错误: MSBUILD : error MSB4132: The tools version "2.0" is unrecognized. Available tools versions are "4.0". 或者: MSBUILD : error MSB4132: The tools version "2.0" is unrecognized. A…
有时我们使用下载python 自带的pip 安装一些工具包时,会报如下错误 找不到满意的版本,这时就是我们的pip可能需要升级了,所以使用 python -m pip install --upgrade pip 升级一下pip ,--upgrade 后面跟的是需要升级的库名 然后继续尝试发现还是不行,会报相同的错误,这时考虑到是网络的问题,我的网有时候是不稳定的,这时我们用国内的镜像源来加速 pip install 包名-i http://pypi.douban.com/simple/ --tr…
#-*- coding: UTF-8 -*-# The isBadVersion API is already defined for you.# @param version, an integer# @return a bool# def isBadVersion(version):class Solution(object):    def firstBadVersion(self, n):        """        :type n: int        :…