1. 问题描述
在Mac上使用命令 pip install 安装numpy等python依赖包时可能会出现安装速度慢的情况,问题原因是默认的安装愿可能是国外源。
2. 解决方案
替换pip默认的源,改成国内的源即可。
3. 国内源
1)清华源
https://pypi.tuna.tsinghua.edu.cn/simple
2)阿里云源
http://mirrors.aliyun.com/pypi/simple/
3)中国科技大学源
https://pypi.mirrors.ustc.edu.cn/simple/
4)华中理工大学源
http://pypi.hustunique.com/
5)山东理工大学源
http://pypi.sdutlinux.org/
6)豆瓣源
http://pypi.douban.com/simple/]
4. 问题解决方法
4.1 临时方案
在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider,这样就会从清华这边的镜像去安装pyspider库。
4.2 永久方案
Mac和Linux下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)
内容如下:
[global]
index-url = [https://pypi.tuna.tsinghua.edu.cn/simple](https://pypi.tuna.tsinghua.edu.cn/simple)
[install]
trusted-host=mirrors.aliyun.com
Windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini。内容同上。