使用国内镜像通过pip安装python包

pip配置国内镜像下载python包

pip install下载Python安装包总是出错,国内的网络访问python官网有些吃力。清华大学提供开源镜像站:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/

pypi 镜像每 5 分钟同步一次。

临时使用

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

注意,simple 不能少, 是 https 而不是 http

本地配置

使用pip的用户可以如下配置:  

在unix和macos,配置文件为:$HOME/.pip/pip.conf  
在windows上,配置文件为:%HOME%\pip\pip.ini  

需要在配置文件内加上:  
[global]  
index-url=http://mirrors.tuna.tsinghua.edu.cn/pypi/simple   

你可能感兴趣的:(Python)