The 'pip==19.0.3' distribution was not found and is required by the application错误 按提示打开pip3-script.py文件,可以看到倚赖写死了19.0.3版本 # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3'__requires__='pip==19.0.3'importreimportsysfrompkg_resourcesimportload_entry...
针对你遇到的 pkg_resources.DistributionNotFound: the 'pip==19.0' distribution was not found 错误,我们可以按照以下步骤进行排查和解决: 1. 确认问题原因 这个错误通常表明系统中没有安装指定版本的 pip(即 pip 19.0)。可能是由于系统中安装了其他版本的 pip,或者 pip 没有被正确安装。 2. 检查当前 pip 版...
由于某些原因,我的pip安装版本过多,导致pip和pip3都报这个错误,以前找了很久解决方案都不成功,今天突然再找一下就找到了,可还行 python2 pip解决方案 pip install aliyun-python-sdk-core==2.3.5 aliyun-python-sdk-rds datetime #报错 The 'pip==7.1.0' distribution was not found and is required by ...
line786,inresolveraiseDistributionNotFound(req,requirers)pkg_resources.DistributionNotFound:The'pip==20.3.1'distribution wasnotfoundandis required by the application
The 'pip==1.5.4' distribution was not found and is required by the application 1. 2. 根据提示信息可以知道distribution没有安装,所以就安装一下: $wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.10.tar.gz $tar -xzvf distribute-0.6.10.tar.gz ...
pkg_resources.DistributionNotFound: The 'pip==19.0.2' distribution was not found and is required by the application I'm with the same problem 5tigerjelly commented I also have the same issue pfmoore commentedon May 24, 2019 This looks like an issue in /usr/local/opt/python/libexec/bin/...
pip报错:解决pkg_resources.DistributionNotFound: The 'pip==7.1.0' distribution was not found and is required by the application 如果pip安装后提示依然没有pip命令,需在在添加环境变量 # vim /etc/profile 在文档最后,添加: export PATH="/usr/local/python2.7/bin:$PATH"...
pkg_resources.DistributionNotFound: The 'pip==1.4' distribution was not found and is required 在freeBSD上升级了下pip,中间升级失败,导致再次运行pip报如上错误,而且pip命令没了 解决: 查看日志/root/.pip/pip.log,发现pip安装到了临时目录/tmp/xxxxx/pip ...
raise DistributionNotFound(req, requirers)pkg_resources.DistributionNotFound: The 'pip==19.2.3' distribution was not found and is required by the application PS C:\Users\DJ> 根据运行结果,冲突指向两个文件: pip-script.py和__init__.py
原本使用pip版本为7.1.0,后升级至9.0.1 之后使用pip list提示pkg_resources.DistributionNotFound: The 'pip==7.1.0' distribution was not found and is required by the application 解决方法: vim /usr/bin/pip --- #!/usr/bin/python # EASY-INSTALL-ENTRY-SCRIPT: 'pip==7.1.0','console_scripts'...