pip安裝模組失敗

-_-_-_-_-_-_-_-發表於2017-07-12

此情況只用於網路不暢的安裝模組背景:

總出現紅色的

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

你可能會遇到下面這樣的情況:


是因為網路的問題,要使用國內的映象源來加速


解決辦法:

你需要的是在你的命令列下面新增一句

例如:原本執行的命令是:

pip install selenium==3.3

改為:

pip install selenium==3.3 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

結果會就成功:


ok!問題解決!

如果有幫到你,請點選贊~\(≧▽≦)/~

相關文章