python中pip镜像源更换
在Python中更换pip的镜像源可以通过修改pip的配置文件pip.conf
(Unix系统位于~/.config/pip/pip.conf
,Windows系统位于%APPDATA%\pip\pip.ini
)来实现。如果该文件不存在,可以手动创建它。
以下是一些常用的镜像源:
- 阿里云:
https://mirrors.aliyun.com/pypi/simple/
- 中国科技大学:
https://pypi.mirrors.ustc.edu.cn/simple/
- 豆瓣(douban):
http://pypi.douban.com/simple/
- 清华大学:
https://pypi.tuna.tsinghua.edu.cn/simple/
你可以选择其中一个镜像源,将以下内容添加到pip.conf
(或pip.ini
)中:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
替换https://mirrors.aliyun.com/pypi/simple/
为你选择的其他镜像源。
如果你想要临时使用其他源安装包,可以在安装时使用pip install
命令的-i
选项:
pip install -i https://mirrors.aliyun.com/pypi/simple/ some-package
替换some-package
为你想要安装的包名,并将https://mirrors.aliyun.com/pypi/simple/
替换为你选择的其他镜像源。
评论已关闭