Installing python libraries without pip

The problem is that the network in which I work for some reason blocks the installation of python libraries via pip install (gives an error related to SSL certificates) see the screenshot. No one has been able to solve the problem for several months. There may be a way to install the python library by downloading the library files from pypi.org, please tell me how this can be done?SSL error

enter a description of the image here enter a description of the image here

Author: Denis Osadchiy, 2021-02-02

1 answers

Download .whl file and install it pip install path/to/file.whl

Or download tar.gz, unpack and install via python setup.py install from the desired folder.

 0
Author: Эникейщик, 2021-02-02 12:08:37