本文主要是介绍ubuntu下执行sudo apt-get install python-pip 出现错误 Unable to locate package python-pip,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ubuntu13.04下执行sudo apt-get install python-pip 出现以下错误:
E: Unable to locate package python-pip
解决办法:
摘自 https://askubuntu.com/questions/672808/sudo-apt-get-install-python-pip-is-failing
python-pip is in the universe repositories, therefore use the steps below:
sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install python-pip
这篇关于ubuntu下执行sudo apt-get install python-pip 出现错误 Unable to locate package python-pip的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!