ImportError: cannot import name HTTPSHandler using PIP

后端 未结 12 1853
刺人心
刺人心 2020-11-28 07:35

Facing an HTTPSHandler error while installing python packages using pip, following is the stack trace,

--------desktop:~$ pip install Django==1.3
Traceback (         


        
12条回答
  •  攒了一身酷
    2020-11-28 07:46

    You need to install OpenSSl before make and install Python to solve the problem.

    On Centos:

    yum install openssl openssl-devel -y
    

    source

提交回复
热议问题