ssl module in python is not available Windows 7

后端 未结 5 1622
天涯浪人
天涯浪人 2020-12-20 16:28

I have Python 3.7.1 installed on Windows 7 from www.python.org. When I want to \"pip install pylab\" I receive the following message: \"pip is configured with locations that

相关标签:
5条回答
  • 2020-12-20 16:56

    I also had the same problem. But solved it by just adding path variables in evt variables So check for the following paths 1. Anaconda root 2. Anaconda/Scripts 3. Anaconda/Library/bin the 3rd one was not added and after adding all these evt variables do restart your PC. and the error will be resolved.

    0 讨论(0)
  • 2020-12-20 17:00

    What worked for me is: conda activate in command prompt and then use pip

    0 讨论(0)
  • 2020-12-20 17:03

    According to your comment with the PATH variable you are missing the right entries to this so it cannot find the libraries and so on.

    If you reinstall python in the first screen you have an option ‘Add Python x.x.x to PATH’ enable this option and then retry what you did.

    0 讨论(0)
  • 2020-12-20 17:11

    Activating conda (from condabin folder: activate.bat) and then from the python.exe folder "python.exe -m pip install siphon"

    0 讨论(0)
  • 2020-12-20 17:14

    I had the same issue because of corporate firewall settings.

    If you are on windows go to "Internet Properties" ---> "Connection" ---> "LAN Settings" and check the address (if it is a wpad.dat file, download it and look for "ProxyPort" and "ProxyServer").

    Then try :

    pip --proxy http://user:password@ProxyServer:ProxyPort install module

    0 讨论(0)
提交回复
热议问题