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

后端 未结 28 1720
别跟我提以往
别跟我提以往 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:15

    You can do either of these two:

    1. While installing Anaconda, select the option to add Anaconda to the path.

    or

    1. Find these (complete) paths from your installation folder of Anaconda and add them to the environment variable :

    \Anaconda

    \Anaconda\Library\mingw-w64\bin

    \Anaconda\Library\usr\bin

    \Anaconda\Library\bin

    \Anaconda\Scripts

    \anaconda\Library

    \anaconda\condabin

    Add the above paths to the "Path" system variable and it should show the error no more :)

提交回复
热议问题