国内主流镜像源
tips: 若担心安全问题请使用HTTPS加密源
永久生效
mac
1 2 3 4 5 6 7 8 9
| cat $HOME/.config/pip/pip.conf # 或者 cat ~/.pip/pip.conf
>>> [global] index-url = https://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com
|
linux
1 2 3 4 5
| cat $HOME/.config/pip/pip.conf
>>> [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple12
|
windows
新建%APPDATA%\pip\pip.ini,并写入以下内容
1 2
| [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
|
临时生效
1 2
| pip install pandas -i http://mirrors.aliyun.com/pypi/simple/ pip install django -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
|