- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试安装一个新模 block ,但我发现 pip
不起作用 - 它显示
pkg_resources.DistributionNotFound: The 'pip==1.5.6' distribution was not found and is required by the application
pip --help
.我找到了一些重新安装的建议
pip
使用
pip
或
easy_install
,但是
easy_install
也不起作用:
pkg_resources.DistributionNotFound: The 'setuptools==5.7' distribution was not found and is required by the application
python
及其所有模 block ?
apt-get install python-pip
建议安装
pip
(以及一堆其他以下软件)就像我的系统中没有它一样。我不敢这样做,这里会发生冲突吗?
apt-get
说它要安装以下内容:
build-essential dpkg-dev fakeroot g++ g++-4.8 libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libfakeroot libstdc++-4.8-dev python-chardet-whl python-colorama python-colorama-whl python-distlib python-distlib-whl python-html5lib python-html5lib-whl python-pip python-pip-whl python-requests-whl python-setuptools python-setuptools-whl python-six-whl python-urllib3-whl python-wheel
.但据我所知 pip 在没有这些包的情况下对我有用。
which -a python
:
/usr/bin/python
which -a pip
:
/usr/local/bin/pip
python --version
:
Python 2.7.6
最佳答案
拥有错误的完整回溯会很有用。可能导致此问题的一种情况是安装了多个版本的 Python。
例如,在我的 Ubuntu 20.04.1 LTS 上,除了随 Ubuntu 20 一起分发的 Python 3.8 之外,我还从源代码安装了 Python 3.6。这就是我用 pip3 --version
得到的结果。安装 Python 3.6 后:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 581, in _build_master
ws.require(__requires__)
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 898, in require
needed = self.resolve(parse_requirements(requirements))
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 789, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.VersionConflict: (pip 20.2.3 (/usr/local/lib/python3.6/site-packages), Requirement.parse('pip==20.0.2'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/bin/pip3", line 6, in <module>
from pkg_resources import load_entry_point
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3126, in <module>
@_call_aside
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3110, in _call_aside
f(*args, **kwargs)
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3139, in _initialize_master_working_set
working_set = WorkingSet._build_master()
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 583, in _build_master
return cls._build_from_requirements(__requires__)
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 596, in _build_from_requirements
dists = ws.resolve(reqs, Environment())
File "/usr/local/lib/python3.6/site-packages/pkg_resources/__init__.py", line 784, in resolve
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'pip==20.0.2' distribution was not found and is required by the application
最后一行是有问题的错误,但请注意回溯中的一个重要细节:
raise VersionConflict
.
pip
所需的版本:
$ python3.6 -m pip --version
pip 20.2.3 from /usr/local/lib/python3.6/site-packages/pip (python 3.6)
或者干脆:
$ pip3.6 --version
pip 20.2.3 from /usr/local/lib/python3.6/site-packages/pip (python 3.6)
另一个可能会遇到的问题是
missing lsb_release做时的问题
pip3.6 install
:
File "/usr/local/lib/python3.6/subprocess.py", line 438, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '('lsb_release', '-a')' returned non-zero exit status 1.
这可以通过定位
lsb_release.py
来解决。并创建符号链接(symbolic link),例如:
sudo ln -s /usr/lib/python3/dist-packages/lsb_release.py /usr/local/lib/python3.6/site-packages/lsb_release.py
现在可以升级 pip3.6 并安装新软件包:
$ pip3.6 install --upgrade pip
$ pip3.6 install mypy
managing Python versions有不同的方法.小心使用类似
sudo update-alternatives --config python
的东西.更改系统的默认 Python 可能会导致问题,包括终端未打开等症状。最好有一个备用终端,例如 Visual Studio Code 中的终端。
关于python pip 错误 pkg_resources.DistributionNotFound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32693107/
我已经在我的系统上安装了 celeryD 和 redis。当我使用 celery 运行命令时。我收到以下错误。 Traceback (most recent call last): File
无法让“intel-nauta”运行,因为它抛出此错误:pkg_resources.DistributionNotFound:未找到“jsonschema”发行版,并且是应用程序所需的[19160]
Pip 看到一个版本为 1.4.0 的包,但随后提示说我需要它的 >=0.9.34 版本。不是 1.4.0 > 0.9.34 吗? root@36e7a0a55174:~/tldr-integrati
为什么 this simple program导致运行时出现 pkg_resources.DistributionNotFound 错误,我们该如何解决? #setup.py from setupto
我正在尝试使用 reviewcode python/django 的 git 存储库。安装时 easy_install ReviewBoard 我收到以下错误 Setup script exited
我正在尝试使用 PyInstaller 将我的 python 文件转换为可执行文件。该程序使用 Google Cloud Translate API在语言之间翻译给定的文本。在终端中运行 python
我正在尝试安装一个新模 block ,但我发现 pip不起作用 - 它显示 pkg_resources.DistributionNotFound: The 'pip==1.5.6' distribut
我想安装这个 repo https://github.com/armooo/cloudprint在我的树莓派上。说明在这里 https://baxeico.wordpress.com/2014/06/
使用grok主页教程中的grokproject Sample来同时创建一个新项目并安装grok框架。 cd Sample 然后像教程中那样运行 bin/paster serve parts/etc/d
我正在运行 pyjade对于 Django 模板,因为我发现它更容易编写,但我正在尝试使用内置转换器将其转换为 html。当我运行 pyjade -c django input.jade output
我已经安装了docker和docker-compose。但是当我尝试构建镜像时,它显示了以上错误。但我已经安装了docer-compose及其在错误中声称的确切版本。作为docker world的初学
所以,几天前,我试图用 Pyramid 启动 Django,并在我的技能范围之外使用一些网络魔术,结果搞砸了很多重要的事情。有一段时间我什至无法运行 python。我最终通过更改系统变量 PYTHON
我正在尝试创建我构建的 CLI 工具的 rpm。 rpm 正在创建并安装,没有错误。但是,当我尝试使用 CLI 时,出现以下异常: Traceback (most recent call la
我的 pip3 好像坏了: $ pip3 --version Traceback (most recent call last): File "/usr/bin/pip3", line 5, in
我在新的 Windows 8 (x64) 中安装了: python-2.7 pywin32-218.win32-py2.7 setuptools-0.6c11.win32-py2.7 和 Pyrami
每当我尝试使用 pip 时,都会出现错误。例如: $ sudo pip install gevent-websocket Traceback (most recent call last): Fil
我按照教程 here 安装了scrapy ,安装成功但是一旦我尝试设置一个项目,它就会显示 pip install Scrapy nikhil@nikhil:~$ scrapy startprojec
Scrapy 无法在我的 Ubuntu 14.04 上运行并给出错误: Traceback (most recent call last): File "/usr/bin/scrapy", line
大约一个月前,我使用他们提供的 go-pylons.py 脚本在虚拟环境中的 VPS 上设置了 Pylons。从那时起,我就一直在我的网站上工作,并将其全部启动并运行。效果很好。 最近我发现我使用Py
最近运行 yolk -U 我注意到 pip 需要从 1.2.1 升级到 1.4.1,并尽职尽责地尝试使用 升级它 pip install --upgrade pip 虽然再次运行 yolk -U 似乎
我是一名优秀的程序员,十分优秀!