那棵树看起来生气了
pip 镜像源加速
05/10
前言
在使用python包管理安装模块的时候有时候速度很慢,可以尝试使用第三方镜像源
正文
地址
清华:
https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:
http://mirrors.aliyun.com/pypi/simple/
中国科技大学
https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:
http://pypi.hustunique.com/
山东理工大学:
http://pypi.sdutlinux.org/
豆瓣:
http://pypi.douban.com/simple/
使用方法
临时使用
$ pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider
全局设置
Linux下,修改 ~/.pip/pip.conf, 修改 index-url至tuna,内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
结尾
建议临时设置
三合一收款
下面三种方式都支持哦