原因
國內使用官方的pypi源不穩定,經常出現timeout的情況,所以使用阿里的源代替
方法
- 新建配置檔案
Window下:
%APPDATA%\pip\pip.ini
Linux下:
~/.pip/pip.conf
- 內容
[global]
timeout = 60
index-url = http://mirrors.aliyun.com/pypi/simple/ - 如果使用
http
連結,則需要trusted-host
引數
[global]
timeout = 60
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
現在可以順暢使用pip了