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