欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

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

程序员文章站 2023-09-17 22:10:14
临时使用pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package注意,simple不能少, 是https而不是http设为默认修改~/.config/pip/pip.conf(Linux)%APPDATA%\pip\pip.ini(Windows 10)$HOME/Library/Application Support/pip/pip.conf(macOS)(没有就创建一......

临时使用

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

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

设为默认

修改

 ~/.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

或者终端输入

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

 

本文地址:https://blog.csdn.net/DragonGirI/article/details/107143023