I am new to python. And I want to install some modules, but it kept telling me the wheel is not supported. Could anyone help me? Thank you.
Details:
python ver. 3.6.4 x64
Pillow-5.0.0-cp36-cp36m-win_amd64.whl
Here is what I got when I tried to install the module via pip
.
C:\Python\Scripts>pip install Pillow-5.0.0-cp36-cp36m-win_amd64.whl
Pillow-5.0.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
When I run
import pip
print(pip.pep425tags.get_supported())
I get the following output:
[('cp36', 'cp36m', 'win_amd64'), ('cp36', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp36', 'none', 'any'), ('cp3', 'none', 'any'), ('py36', 'none', 'any'), ('py3', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
I think you should try this it works for me, run in CMD
python -m pip install pillow --trusted-host='pypi.python.org'