本文主要是介绍Ubuntu下pip3安装失败的解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
The program ‘pip3’ is currently not installed. You can install it by typing:
apt install python3-pip
这种直接按照他们所说的方式处理有问题。
需要进行一个特别处理。
修改源
sudo apt-get purge --auto-remove python3-pip
sudo apt-get update
sudo apt-get -y install python3-pip
执行效果如下:
这篇关于Ubuntu下pip3安装失败的解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!