“E:无法找到包python3-pip”

h22fl7wq  于 2023-05-27  发布在  Python
关注(0)|答案(7)|浏览(204)

我无法找到python-pip包:

Reading package lists... Done
Building dependency tree Reading state information... Done
E: Unable to locate package python3-pip

如何解决这个问题?

nvbavucw

nvbavucw1#

对于Ubuntu 18.04(Bionic Beaver),使用Python 3.6.5,python-pip包将在以下时间安装:

sudo add-apt-repository universe
sudo apt-get update

这将启用类别universe

deb http://archive.ubuntu.com/ubuntu bionic main universe
deb http://archive.ubuntu.com/ubuntu bionic-security main universe
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe
csga3l58

csga3l582#

在干净安装Ubuntu 18.04(通过Vagrant)之后,以下内容已成功安装,没有任何问题:

sudo apt-get update
sudo apt-get install -y python3-pip

请注意,今天的Ubuntu 18.04下载安装了Python 3.6.8。这可能会随着你阅读这篇文章的时间而变化。

zvms9eto

zvms9eto3#

首先更新,然后安装 python3-pip。因此,以下两个命令应该可以工作。

sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install python3-pip
djp7away

djp7away4#

第一次运行sudo apt-get upgrade。如果您看到 ppa:some repository example launchpad.net not found 或IP address not found,请转到

软件和更新,然后取消标记导致错误的存储库。然后选择Ubuntu主服务器,重新加载并运行命令

sudo apt-get update sudo apt-get autoremove sudo apt-get autoclean它将删除不需要的现有软件包并清除缓存,然后尝试

sudo apt-get update
sudo apt-get install -y python3-pip
ebdffaop

ebdffaop5#

您必须清除不需要的存储库的code /etc/apt/sources.listgedit /etc/apt/sources.list。或者另一个选择是切换Ubuntu镜像;参见how to change ubuntu mirror
sudo apt-get update; sudo apt-get install python3-pip;

zazmityj

zazmityj6#

这些命令对我有用:

sudo apt-get install python3-setuptools
sudo easy_install3 pip

这是安装pip的旧方法,对于旧版本的Ubuntu特别有用。但它仍然对我很好。

mfpqipee

mfpqipee7#

另一种方法是直接将universe类别添加到当前的 sources.list 文件中:

vi /etc/apt/sources.list

然后在每一行末尾添加universe类别:

deb http://archive.ubuntu.com/ubuntu bionic main universe
deb http://archive.ubuntu.com/ubuntu bionic-security main universe
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe

相关问题