python 修改默认 pip 源

前言

在 python 里经常要安装各种的包,安装时最常用的就是 pip,pip 默认从官网下载文件,而官网位于国外下载速度时快时慢,还经常断线,所以国内的体验并不太好,解决以上问题的办法是把 pip 源换成国内的。

最常用的并且可信赖的源包括清华大学源、豆瓣源、腾讯源、阿里源。


Pip源的修改方法

按下 win + r 快捷键输入 cmd 打开命令面板,复制对应命令可将相应的源设置为 pip 默认源:

清华源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

阿里源

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

腾讯源

pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple

豆瓣源

pip config set global.index-url http://pypi.douban.com/simple/


总结

以上就是 python 修改默认 pip 源的方法啦,快去试试吧!

你可能感兴趣的:(python,开发语言,后端)