Python3.7.0 SSL低版本導致Pip無法使用

polkabobo發表於2018-12-12

終於下決心把python從2.7升到了3.7。懶人安裝當然使用Anaconda。

安裝成功,編譯成功。但是用pip 安裝包的時候提示:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available。

原因是python3.7為了安全性考慮,要求使用openssl 1.0.2之後的版本。但是自帶的openssl,版本是1.0.1。

解決辦法:重灌一下openssl

進入Anaconda Prompt:

conda install -c anaconda openssl

就一切解決了哈啊哈!完美!

相關文章