pip国内的一些镜像
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
[global] index-url = http://mirrors.aliyun.com/pypi/simple/ trusted-host = mirrors.aliyun.com # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下
[global] index-url = http://mirrors.aliyun.com/pypi/simple/ trusted-host = mirrors.aliyun.com # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
可以在使用pip安装包的时候在后面加上-i参数,指定pip源
pip install <包> -i https://pypi.tuna.tsinghua.edu.cn/simple
先修改源在安装包
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ pip install <包>