赞
踩
# 清华大学(https://mirrors.tuna.tsinghua.edu.cn/help/pypi/)
https://pypi.tuna.tsinghua.edu.cn/simple/
https://mirrors.aliyun.com/pypi/simple/ # 阿里云
https://pypi.douban.com/simple/ # 豆瓣
https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学
https://pypi.hustunique.com/ # 华中科技大学
只要在install后面带上
-i
参数和国内镜像源地址即可
# pip install [pip包名称] -i [国内镜像源地址] some-package
# 例如:
pip install hashlib -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
升级 pip 到最新的版本 (>=10.0.0) 后进行配置
# pip config set global.index-url [国内镜像源地址]
# 例如:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
· Linux/Mac os 环境中,配置文件位置在 ~/.pip/pip.conf(如果不存在创建该目录和文件)
· Windows环境中,需要在当前对用户目录下(C:\Users\xx\pip,xx 表示当前使用对用户)
创建一个 pip.ini在pip.ini
· WIN10路径:C:\Users[当前对用户]\AppData\Roaming\pip\pip.ini
# pip.ini
# 内容修改参考如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。