1. 程式人生 > >Python pip源更改

Python pip源更改

將pip源設定為阿里源

  • windows
  1. 開啟檔案資源管理器(資料夾地址中)
  2. 位址列上面輸入 %appdata%
  3. 在這裡面新建一個資料夾pip
  4. 在pip資料夾裡面新建一個檔案叫做 pip.ini,內容如下
[global]
timeout = 6000
index-url = https://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
  • Mac or Linux
  1. cd ~
  2. mkdir ~/.pip
  3. vi ~/.pip/pip.conf
  4. 編輯內容:與 window內容一模一樣