sudo apt-get install python-pip失败


34
sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-pip

如何在ubuntu:14.04中安装python-pip?


这里看看这个线程askubuntu.com/questions/268539/…可以为您提供帮助。
vembutech

Answers:


61

python-pip 在Universe信息库中,因此请使用以下步骤:

sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install python-pip

sudo apt-add-repository Universe错误:sudo:apt-add-repository:找不到命令
Ravi _SS

1
@Ravi_SS抱歉,忘记了的安装apt-add-repository。与安装sudo apt-get install software-properties-common为现在我的答案描述。从第一个命令重新开始。
2015年

apt-get update工作正常,但是sudo apt-get update给我错误..而且sudo apt-get install software-properties-common无法正常工作。
拉维_SS 2015年

在sudo apt-get上安装software-properties-common Err archive.ubuntu.com/ubuntu trusty / main libroken18-heimdal amd64 1.6〜git20131207 + dfsg-1ubuntu1无法解析“ archive.ubuntu.com”
Ravi _SS

你在线吗?
2015年

15

我在尝试为python2安装pip时遇到了这个问题;EI我想要pip2。对我有用的是:

sudo apt-get update && sudo apt-get install python-pip

希望这对某人有帮助。


1
这对我有用。
维克斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.