pip清华源镜像使用方法总结

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple package-name

注意,simple 不能少, 是 https 而不是 http

设为默认

 对应环境下的终端输入

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

或者

 ~/.config/pip/pip.conf (Linux)

 C:\Users\xxxxx\pip\pip.ini (Windows 10)

 $HOME/Library/Application Support/pip/pip.conf (macOS)

(没有就创建一个)

修改 index-url

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

pip 和 pip3 并存时,只需修改 ~/.pip/pip.conf

posted @ 2024-09-16 18:45  龙雪  阅读(76)  评论(0编辑  收藏  举报  来源