pip 配置国内镜像源

Windows:

临时性的:

pip install package -i https://pypi.tuna.tsinghua.edu.cn/simple gevent

永久性的:

找到下面文件夹,

C:\Users\用户名\AppData\Roaming\

文件夹下,新建一个pip文件,在里面再新建一个pip.ini文件,文件内写

[global]  

index-url=http://mirrors.aliyun.com/pypi/simple/  

[install]  

trusted-host=mirrors.aliyun.com  

即可。

注意:trusted-host 选项为了避免麻烦是必须的,否则使用的时候会提示不受信任,或者添加“--trusted-host=mirrors.aliyun.com”选项;

Linux:

Unix/linux系统,配置的是在 $HOME/.config/pip/pip.conf 的pip.conf配置文件中,修改当中的index-url至tuna,内容如下

国内主要镜像源:

http://pypi.douban.com/simple/ 豆瓣

http://mirrors.aliyun.com/pypi/simple/ 阿里

http://pypi.hustunique.com/simple/ 华中理工大学

http://pypi.sdutlinux.org/simple/ 山东理工大学

http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学

https://pypi.tuna.tsinghua.edu.cn/simple 清华

官网的说法:

On Unix the default configuration file is: $HOME/.config/pip/pip.conf which respects the XDG_CONFIG_HOME environment variable.

On macOS the configuration file is $HOME/Library/Application Support/pip/pip.conf if directory $HOME/Library/Application Support/pip exists else $HOME/.config/pip/pip.conf.

On Windows the configuration file is %APPDATA%\pip\pip.ini

参考了:https://blog.csdn.net/mangguochang/article/details/83722281

你可能感兴趣的:(pip 配置国内镜像源)