当前位置: 首页 > 知识库问答 >
问题:

如何在Ubuntu 18.04中更新pip3到它的最新版本?

颜宸
2023-03-14

我在运行时遇到此错误

$ pip3 install -U pip

Requirement already up-to-date: pip in ./dlenv/lib/python3.6/site-packages (10.0.1)
launchpadlib 1.10.6 requires testresources, which is not installed.

我在apt中搜索过,testresources似乎已经安装好了。

apt search testresources
Sorting... Done
Full Text Search... Done
python-testresources/bionic,bionic 2.0.0-2 all
  PyUnit extension for managing expensive test fixtures - Python 2.x

python3-testresources/bionic,bionic 2.0.0-2 all
  PyUnit extension for managing expensive test fixtures - Python 3.

我已经通过这个github问题,这是不清楚的解决方案。

共有3个答案

贝自怡
2023-03-14

###########################################################################################################################

彭博厚
2023-03-14

建议在Ubuntu18.04上通过PyPA指南安装pip,因为如果我们通过sudo-apt-install-python3-pip安装pip,那么pip版本就太旧了。

以下是我的工作:

#curlhttps://bootstrap.pypa.io/get-pip.py-去接皮普。py

#python获取pip。py

顺便说一句,pip的默认位置是/usr/loc/bin/pip,以防找不到PATH。

越飞翮
2023-03-14

试试这个,

sudo apt install python3-testresources
 类似资料: