python的pip安装、升级、更新包以及更换镜像源

国内镜像源:
阿里云 https://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

若出现如下警告:
python的pip安装、升级、更新包以及更换镜像源

在镜像源后添加如下,其他镜像源一样:

pip install 包名 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

若出现以下错误:
python的pip安装、升级、更新包以及更换镜像源
根据提示可知,添加–user即可:

pip install --user --upgrade pillow -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

pip安装python包:

pip install 包名 

pip 更新python包:

pip install --upgrade 要升级的包名

pip 卸载包名:

pip uninstall 要卸载的包名
上一篇:(解决)Linux 无法连接外网,离线下载组件依赖


下一篇:更换Python pip库镜像地址