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

Ubuntu16.04中pip换源

程序员文章站 2022-05-09 22:57:21
...
cd ~/.pip

如果不存在.pip目录,则创建目录

mkdir ~/.pip
cd ~/.pip
touch pip.conf
sudo gedit ~/.pip/pip.conf

在pip.conf中写入以下内容:即可

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

最后更新

sudo apt-get update
相关标签: ubuntu16.04 pip