在终端进入目录:cd ~/
如果没有 .pip
文件夹,那么就要新建这个文件夹:mkdir .pip
然后在.pip
文件夹内新建一个文件touch pip.conf
,
编辑pip.conf
文件,写入阿里云
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
或者可以使用豆瓣的镜像:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
或者:
pip install pyinstaller -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
可以在使用pip的时候在后面加上-i参数,指定pip源
pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
pip国内的一些镜像:
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:pip换源(mac,linux,Windows同样适用)