1. 程式人生 > >pip/pip3更換國內映象源

pip/pip3更換國內映象源

Windows下更換映象源

  • 開啟使用者目錄 %Users/${username}/% , 如(C:/Users/使用者名稱/), 在此目錄下建立 pip 資料夾
  • pip 目錄下建立 pip.ini 檔案, 內容如下

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

上面使用的清華的映象源

Linux下更換映象源

  • 修改 ~/.pip/pip.conf 檔案, 沒有則建立

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

國內的其他映象源

清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里雲 http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/


中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/