无法在 Ubuntu 18.04 上安装 pip3 和 easy_install
Unable to install pip3 and easy_install on Ubuntu 18.04
我的新 Ubuntu 18.04 没有安装 pip3 并且经过多个问题,我只能使用 easy_install3 安装它。但是,easy_install3 不可用,安装说明使用 pip3。我现在陷入僵局。我的尝试:
sudo apt-get install python3-setuptools
即成功
sudo easy_install3 pip
: sudo: easy_install3: command not found
试试看
对于 python3 点
sudo apt-get install python3-pip
对于 python 2.x 点
sudo apt-get install python-pip
我的新 Ubuntu 18.04 没有安装 pip3 并且经过多个问题,我只能使用 easy_install3 安装它。但是,easy_install3 不可用,安装说明使用 pip3。我现在陷入僵局。我的尝试:
sudo apt-get install python3-setuptools
即成功sudo easy_install3 pip
:sudo: easy_install3: command not found
试试看 对于 python3 点
sudo apt-get install python3-pip
对于 python 2.x 点
sudo apt-get install python-pip