Python环境中没有安装pip或者pip版本过低:请确保Python环境中已经安装了pip,并且pip的版本不低于19.0。你可以通过在命令行中输入pip --version来检查pip的版本。如果pip没有安装或者版本过低,你需要升级pip。在命令行中输入以下命令进行升级: python -m pip install --upgrade pip 网络连接不稳定或者速度较慢:请确保...
ERROR: No matching distribution found for XXX WARNING: There was an error checking the latest version of pip. 解决方法一:更换下载源 考虑指定下载源并信任其来源或许能下载成功,这里使用 豆瓣下载源,也可尝试其它下载源。 pip install 包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douba...
安装依赖时,使用pip3.7.5 install xxx命令安装相关软件时提示无法连接网络,且提示“Could not find a version that satisfies the requirement xxx",使用apt-get update命令检查源可用。提示信息如下图所示。 图1使用pip3.7.5安装软件提示信息 可能原因
python -m pip install --upgrade pip 升级一下pip ,--upgrade 后面跟的是需要升级的库名 然后继续尝试发现还是不行,会报相同的错误,这时考虑到是网络的问题,我的网有时候是不稳定的,这时我们用国内的镜像源来加速 pip install 包名-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com --t...
python pip 安装一些包找不到的问题 Could not find a version that satisfies... 有时我们使用下载python 自带的pip 安装一些工具包时,会报如下错误 找不到满意的版本,这时就是我们的pip可能需要升级了,所以使用 python -m pip install --upgrade pip 升级...
pip install 报错 ERROR: Could not find a version that satisfies the requirement PIL (from versions: none) ERROR: No matching distribution found for PIL 转载于:https://blog.csdn.net/fwpevil/article/details/87700848 在python3.7中,PIL库已经更名为:pillow,所以直接:pip install pillow 就可以解决问题...
Could not find a version that satisfies the requirement 安装包名字(from versions: ) No matching distribution found for 安装包名字 在Python编程和包管理的日常工作中,使用pip工具安装软件包时,我们有时会遇到一个常见的错误提示:“ERROR: Could not find a version that satisfies the requirement”。这个错误...
一、问题描述 pip/pip3 install 报错 “Could not find a version that satisfies the requriement xxx”,如下图: 二、排查思路 1、检查网络配置 我尝试了yum和wget也出现了错误,由此发现是网络问题。检查网络配置文件,原来是忘记了配置DNS。 2、是否pip版... ...
Python中使用pip安装一些库时出现ERROR: Could not find a version that satisfies the requirement you-get 鲨鱼军团 船员,旅游,船长 创作声明:内容包含虚构创作 4 人赞同了该文章 有时我们使用pip安装需要使用的某些包时会报如下错误: ERROR: No matching distribution found for you-get 的情况 这可能是因为网络...
pip安装python包出错:Could not find a version that satisfies the requirement skimage (from versions: ) 今天用pip安装skimage时报错: 这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 命令改为: pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi...