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

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

    For future Oracle Linux users trying to solve this, below is what worked for me. First install missing libs:

    yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel 
    readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
    

    Then cd to your Python3.X library and run:

    make
    make install 
    

提交回复
热议问题