2017-08-27 43 views
0

我正在嘗試配置共享主機服務器以與Django一起使用。當我嘗試使用PIP來安裝Django,我得到說配置了需要TSL/SSL的位置的pip

pip is configured with locations that require TSL/SSL, however the ssl module in Python is not available. 
... 

There was a problem confirming the ssl certificate: Can't connect to HTTPS URL because the SSL module is not available 

可以理解的,我沒有root權限警告,所以我不得不在本地安裝OpenSSL的。我應該如何告訴pip在哪裏尋找它?這實際上能解決問題嗎?

回答

0

根據this答案

可以忽略使用索引網址和傳遞HTTP URL作爲參數,然後將其設置爲受信任的來源HTTPS。

pip install --index-url=http://pypi.python.org/simple/ --trusted-host pypi.python.org package_name 
+0

我得到相同的錯誤 –