在utuntu下建议不要使用apt-get install 安装pip,会出现很多问题。
建议使用如下方式安装:
wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
sudo python get-pip.py
而安装pip3,采用以下方式:
sudo apt-get install python3-pip
用pip3安装python包命令:
sudo pip3 install packgename
2023-12-23 08:50:27
在utuntu下建议不要使用apt-get install 安装pip,会出现很多问题。
建议使用如下方式安装:
wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
sudo python get-pip.py
而安装pip3,采用以下方式:
sudo apt-get install python3-pip
用pip3安装python包命令:
sudo pip3 install packgename