如何在 Ubuntu 20.04 中为 Python2.7 安装 pip
How can I install pip for Python2.7 in Ubuntu 20.04
有什么方法可以为“Python2.7”安装“pip”吗?
我可以通过
安装 python2.7
sudo apt install python2-minimal
我尝试为此安装 pip。
sudo apt install python-pip / python2-pip / python2.7-pip
但 none 有效。谁能解决这个问题。
Python 2 的点子未包含在 Ubuntu 20.04 存储库中。
尝试 this guide,它建议获取 Python 2.7 兼容 get_pip.py
并将其用于 bootstrap pip
.
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
试试这个:
sudo apt update
sudo apt install curl
sudo add-apt-repository universe
sudo apt update
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
有什么方法可以为“Python2.7”安装“pip”吗? 我可以通过
安装 python2.7sudo apt install python2-minimal
我尝试为此安装 pip。
sudo apt install python-pip / python2-pip / python2.7-pip
但 none 有效。谁能解决这个问题。
Python 2 的点子未包含在 Ubuntu 20.04 存储库中。
尝试 this guide,它建议获取 Python 2.7 兼容 get_pip.py
并将其用于 bootstrap pip
.
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
试试这个:
sudo apt update
sudo apt install curl
sudo add-apt-repository universe
sudo apt update
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