python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > Python pip更换镜像源

Python pip更换镜像源的流程步骤

作者:鱼丸丶粗面

本文介绍了Python pip更换镜像源的流程步骤,提供了临时性和永久性两种方式,适用于Windows和Linux用户,临时性更换通过在安装时指定参数;永久性更换涉及修改配置文件,如在Windows中创建文件,Linux中编辑文件,需要的朋友可以参考下

1 概述

1.1 默认镜像,速度慢,易报错

1.2 常用国内镜像源

镜像网址
中科大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/

2 更改镜像源

2.1 临时更改

# 命令格式
pip install <安装包> -i <镜像源>

# 如:用中科大的镜像源安装 python-docx
pip install python-docx -i https://pypi.mirrors.ustc.edu.cn/simple

2.2 永久更改

2.2.1 查看配置源及配置文件

# 查看 pip 配置
pip config list

# 查看 pip 配置文件的路径
pip config -v list

2.2.2 编辑 pip.ini

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn

2.2.3 配置后的效果

到此这篇关于Python pip更换镜像源的流程步骤的文章就介绍到这了,更多相关Python pip更换镜像源内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文