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

Here was my process to correct the error, on Windows 10 with Anaconda:

  1. Added the following paths to my environment variables:
  • /AppData/Local/Continuum/Anaconda3
  • /AppData/Local/Continuum/Anaconda3/Scripts
  • /AppData/Local/Continuum/Anaconda3/Library
  • /AppData/Local/Continuum/Anaconda3/Library/Bin

At this stage, the error message was still there.

  1. From Anaconda Prompt, I installed the latest version of pip:

    python -m pip install --upgrade pip
    

This appeared to correct the DLL conflict.

Leave a Comment

tech