I am new to setuptools in python.
I added the package 'numpy' and 'tensorflow' to the install_requires list and started the python setup.py installation. It is not installed due to a problem with SSL. We use self-signed SSL for https based URLs.
If used for individual packages, I can use the --cert option. As I know, setuptools uses pip indirectly. If so, is there a way to force it to use the --cert option when setup.py is running?
source
share