镜像 | 网址 |
---|---|
中科大 | https://pypi.mirrors.ustc.edu.cn/simple/ |
清华 | https://pypi.tuna.tsinghua.edu.cn/simple/ |
豆瓣 | http://pypi.douban.com/simple/ |
阿里 | https://mirrors.aliyun.com/pypi/ |
上交大 | https://mirror.sjtu.edu.cn/pypi/web/simple/ |
1 2 3 4 5 |
# 命令格式 pip install <安装包> -i <镜像源>
# 如:用中科大的镜像源安装 python-docx pip install python-docx -i https://pypi.mirrors.ustc.edu.cn/simple |
1 2 3 4 5 |
# 查看 pip 配置 pip config list
# 查看 pip 配置文件的路径 pip config -v list |
1 2 3 4 |
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ [install] trusted-host = pypi.tuna.tsinghua.edu.cn |