赞
踩
使用方法有两种,一种为临时使用,另外一种为永久修改。
1.临时使用:
在使用pip的时候加参数-i,如下:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
2.永久修改:
Linux下,修改~/.pip/pip.conf(或者创建一个),将index-url变量修改为所要更换的源地址:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
windows下,在%USERPROFILE%目录中创建一个pip目录,新建文件pip.ini,内容如下:
[global]
proxy = http://20.1.23.56:3578(代理的ip和地址)
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
extra-index-url = http://28.89.23.45:8000(备用地址)
trusted-host =
disable-pip-version-check = True
timeout = 30
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。