有什么方法可以为“Python2.7”安装“pip”吗?我可以通过安装 python2.7sudo apt install python2-minimal我尝试为此安装 pip 。sudo apt install python-pip / python2-pip / python2.7-pip但没有一个起作用。任何人都可以解决这个问题。
2 回答
子衿沉夜
TA贡献1828条经验 获得超3个赞
试试这个:
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py # Fetch get-pip.py for python 2.7
python2 get-pip.py
pip --version
胡说叔叔
TA贡献1804条经验 获得超8个赞
Ubuntu 20.04 存储库中不包含 Python 2 的 Pip。
尝试本指南,它建议获取 Python 2.7 兼容版本get_pip.py
并使用它来引导pip
。
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
添加回答
举报
0/150
提交
取消