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

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

    For OpenSUSE in the same manner, but a few changes of listed above packages:

    zypper install zlib-devel libopenssl-devel ncurses-devel sqlite3-devel readline-devel tk-devel gdbm-devel libpcap-devel xz-devel
    

    Then cd to Python sources dir and

    make
    make install
    

    or

    make
    make altinstall
    

    And perhaps

    ln -s /usr/local/lib64/python3.6/lib-dynload/ /usr/local/lib/python3.6/lib-dynload
    

    should be executed for OpenSUSE users. See Python 3.7 install not working on openSUSE Leap 42.3

提交回复
热议问题