A memo when pip does not pass due to company security. It's a hassle to apply one by one, so I decided to install it directly and checked it.
If you don't have a wheel file, you can use tar.gz (should be ...)
Python Verison. You can find out what it supports with the following program.
from pip._internal.pep425tags import get_supported
print(get_supported())
>>>
[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
Recommended Posts