“ssl module in Python is not available” when installing package with pip3

后端 未结 28 1766
别跟我提以往
别跟我提以往 2020-11-22 08:51

I\'ve install Python 3.4 and Python 3.6 on my local machine successfully, but am unable to install packages with pip3.

When I execute pip3 install

28条回答
  •  深忆病人
    2020-11-22 09:00

    for osx brew users

    my issue appeared related to my python installation and was quickly resolved by re-installing python3 and pip. i think it started misbehaving after an OS update but who knows (at this time I am on Mac OS 10.14.6)

    brew reinstall python3 --force
    # setup pip
    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    python3 get-pip.py
    # installa pkg successfully 
    pip install pandas
    

提交回复
热议问题