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

前端 未结 30 3329
遇见更好的自我
遇见更好的自我 2020-11-22 11:09

I am using Python3.6, when I try to install \"modules\" using pip3, I am facing the below mentioned issue \"pip is configured with locations that require TLS/SS

30条回答
  •  日久生厌
    2020-11-22 12:06

    The problem probably comes from your installed openssl package version. That was the case for me and I fixed this issue just upgrading it. I'm on Mac OS, using brew :

    brew upgrade openssl
    

    If you installed python with brew, this should directly fix the issue with it, as python is dependent on openssl

提交回复
热议问题