Linux下为Python pip配置清华的源

在Linux下为Python pip配置清华的源。

可以直接使用命令行配置:

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

也可以手动创建文件~/.config/pip/pip.conf,编辑内容如下:

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

效果是一样的,两种方式都可以。

如果不想全局配置,可以在使用pip安装时加上一个参数

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

这是临时使用一下清华的源。

Leave a Comment

豫ICP备19001387号-1