无法安装python3-setuptools

时间:2018-10-10 15:04:20

标签: python python-3.x pip setuptools

我正在使用python 3.4.3。

当我尝试在终端上运行此代码时(一旦我已经在各自的文件夹中)

pip3 install python3-setuptools

我收到此错误消息:

Collecting python3-setuptools
Could not find a version that satisfies the requirement python3 setuptools (from versions: ) No matching distribution found for python3-setuptools

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

您无法使用python3-setuptools安装pip —没有这样的可点子安装的软件包:https://pypi.org/project/python3-setuptools/ —错误404。在python生态系统中,该软件包简称为setuptools

python3-setuptools是Debian / Ubuntu软件包系统中软件包的名称:

https://packages.debian.org/search?keywords=python3-setuptools&searchon=names&suite=stable&section=all

https://packages.ubuntu.com/search?keywords=python3-setuptools&searchon=names&suite=bionic&section=all

因此,您可以使用apt install python3-setuptoolspip3 install setuptools安装它。

相关问题