ubuntu pip3安装卸载
1、普通用户下安装pip3,会安装到用户主目录下。可能会出现已经安装了最新的pip3,但是pip3 --version时显示的还是之前的版本,那是因为没有把安装路径加到PATH环境变量中。
https://blog.csdn.net/dbc_121/article/details/105458361
https://zhuanlan.zhihu.com/p/115676400
2、如果不想使用普通用户安装pip,需要先把普通用户下安装的pip先卸载掉:python -m pip uninstall pip。
https://www.cnblogs.com/yaradish/p/10632246.html
3、卸载之后,使用
-
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
-
sudo python get-pip.py 进行安装。
4、安装完成后会提示:
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
推荐使用虚拟环境以免把系统环境弄乱。
5、ubuntu apt安装源没有弄对,比如我20.04的版本,源里面本来应该写focal结果却写成了bionic,除了会造成安装软件时报错:无法修正错误外,可能还会导致WARNING: pip is being invoked by an old script wrapper。
https://blog.csdn.net/qq_45859188/article/details/106845800
解决方法:换源。https://blog.csdn.net/weixin_44284939/article/details/122647791