3

I know there's several other people asking the same thing but neither works for me. I'm on MacOS and I'm getting "pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available." The solution everywhere is to run it as a trusted package:

pip install --trusted-host pypi.org \
          --trusted-host files.pythonhosted.org \
          requests

I am getting the same error though. Is it possible to ignore ssl?

Thanks

john doe
  • 115
  • 3
  • 9

1 Answers1

2

Try to upgrade pip library using the below command.

sudo pip install --upgrade

Then after use below command to install SSL module of python3.x

sudo pip install ssl

If the error still persists then try the solution here

AzyCrw4282
  • 7,222
  • 5
  • 19
  • 35
  • 1
    Thanks and apologies for the late reply, I'm not in here too often. I managed to get it to work somehow, don't remember how – john doe Aug 11 '20 at 12:12