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

前端 未结 30 3320
遇见更好的自我
遇见更好的自我 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:05

    Fixed this without having to change anything related to TSL/SSL.

    I was trying to see if the same thing was happening to pip, and saw that pip was broken. Did some digging and realized it's probably caused by Homebrew deleted python@2 on February 1st, 2020.

    Running brew uninstall python@2 to delete python2 installed by Homebrew.

    Destroyed the virtual env created using python3 and created a new one.
    pip3 installing works fine again.

提交回复
热议问题