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

前端 未结 30 3497
遇见更好的自我
遇见更好的自我 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:00

    If someone is using Arch Linux OS, I solved the TLS/SSL problem by running this:

    sudo pacman -S openssl
    

    Then I could use pip to install the package I needed:

    pip install openpyxl
    

提交回复
热议问题