在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
时间: 2024-10-20 23:29:39