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

前端 未结 30 3036
遇见更好的自我
遇见更好的自我 2020-11-22 11:09

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

30条回答
  •  无人及你
    2020-11-22 12:02

    You’d try from Anaconda Prompt.

    You will see (base), now upgrade pip. Example:

    (base) C:\Users\Tom>cd ..
    
    (base) C:\Users>cd ..
    
    (base) C:\>python -m pip install --upgrade pip
    Requirement already up-to-date: pip in g:\anaconda3\lib\site-packages (20.0.2)
    
    (base) C:\>pip -V
    pip 20.0.2 from G:\Anaconda3\lib\site-packages\pip (python 3.7)
    
    # Try install
    (base) C:\>pip install selenium
    

    This takes a longer time, but will also install or upgrade SSL libraries that Anaconda uses internally. Keep Going here

提交回复
热议问题