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
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.