pip gives error "pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available." in mac
The answers above was not working for me, any use of pip command was giving me the same error.
I finally solved the issue by re-installing the python3 using pyenv like below
pyenv install 3.7.0
# pyenv: /Users/devbhadurkhadka/.pyenv/versions/3.7.0 already exists
# continue with installation? (y/N) y
Thanks everyone for there answer