Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]

前端 未结 17 2017
一整个雨季
一整个雨季 2020-11-21 13:16

I am trying to install a Python library using pip, getting an SSL error:

~/projects/base  pre-master±  pip install xdict

Collecting xdict
  Co         


        
17条回答
  •  情话喂你
    2020-11-21 13:54

    For all the python3 and pip3 users out there:

    curl https://bootstrap.pypa.io/get-pip.py | sudo python3
    

    and then assume you want to install pandas

    pip3 install pandas --user
    

提交回复
热议问题