ubuntu18.04.4 pip3 换清华、阿里、豆瓣 源

文章目录

  • ubuntu18.04.4 pip3 换源
    • 清华源
    • 阿里源
    • 豆瓣源
    • 中国科学技术大学源
    • 华中科技大学源
    • 永久换源
      • 1 创建 .pip文件
      • 2 进入文件
      • 3 创建pip.conf文件
      • 4 编辑pip.conf文件
      • 5 打开pip.conf文件窗口,将以下内容复制到文件中:

ubuntu18.04.4 pip3 换源

清华源

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

阿里源

pip install -i http://mirrors.aliyun.com/pypi/simple 包名

豆瓣源

pip install -i http://pypi.douban.com/simple  包名

中国科学技术大学源

pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ 包名

华中科技大学源

pip install -i https://pypi.hustunique.com/	包名

永久换源

1 创建 .pip文件

mkdir ~/.pip

2 进入文件

cd ~/.pip

3 创建pip.conf文件

touch pip.conf

4 编辑pip.conf文件

sudo gedit ~/.pip/pip.conf

5 打开pip.conf文件窗口,将以下内容复制到文件中:

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

ubuntu18.04.4 pip3 换清华、阿里、豆瓣 源_第1张图片

你可能感兴趣的:(ubuntu18.04.4 pip3 换清华、阿里、豆瓣 源)