无法在Ubuntu 14.04上安装python pip

2024-05-13 15:15:28 发布

您现在位置:Python中文网/ 问答频道 /正文

这是我用来安装python pip的命令

sudo apt-get install python-pip

我得到以下错误

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 python-pip : Depends: python-setuptools (>= 0.6c1) but it is not going to be installed
              Recommends: python-dev-all (>= 2.6) but it is not installable
E: Unable to correct problems, you have held broken packages.

我已经安装了最新版本的python dev

当我尝试使用 sudo apt-get install python-setuptools我得到以下错误

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 python-setuptools : Depends: python-pkg-resources (= 3.3-1ubuntu1) but 3.3-1ubuntu2 is to be installed
E: Unable to correct problems, you have held broken packages.

解释如何解决错误并指导我安装python-pip的步骤。


Tags: pipinstalledortoyouinformationthatpackages
3条回答

除了@似乎推荐的解决方案之外,我还必须运行这个。

apt-get update

(或)

sudo apt-get install python-setuptools python-dev build-essential 
sudo easy_install pip 

当我安装python pip时出现同样的错误,下面的命令解决了我的问题。

sudo apt-get install python-pkg-resources=3.3-1ubuntu1
sudo apt-get install python-setuptools

https://bootstrap.pypa.io/get-pip.py下载pip

然后运行以下命令(可能需要管理员访问):

python get-pip.py

这会让你走的。 如果你又卡住了,读这里:http://pip.readthedocs.org/en/stable/installing/

相关问题 更多 >