Ubuntu 20.04 存储库中不包含 Python 2 的 Pip。
您需要使用 get-pip.py 脚本为 Python 2 安装 pip。
1. 首先启用 Universe 存储库:
sudo add-apt-repository universe
2. 更新包索引并安装 Python 2:
sudo apt update
sudo apt install python2
3.使用curl下载get-pip.py脚本:
curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py
4. 启用存储库后,以 sudo 用户身份使用 python2 运行脚本以安装 pip :
sudo python2 get-pip.py
如果发生错误,作为后备,可以使用特定的 2.7 版本的 get-pip.py:
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
Pip 将被全局安装。如果您只想为您的用户安装它,请运行不带 sudo 的命令。该脚本还将安装 setuptools 和 wheel,它们允许您安装源分发
通过打印 pip 版本号来验证安装:
pip2 --version
输出将如下所示:
pip 20.0.2 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)