1. 程式人生 > >用PIP 安裝或升級python遇到錯誤提示

用PIP 安裝或升級python遇到錯誤提示

用PIP 安裝或升級python遇到錯誤提示

$ pip install pythons

Collecting pythons

  Could not find a version that satisfies the requirement pythons (from versions: )

No matching distribution found for pythons

 

這是因為網路的問題,需要使用國內的映象源來加速,比如豆瓣源

命令改為:

pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

或者

pip3 install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com