Reputation: 1845
I Did donwnload the package from: lfd.uci.edu
But when I run it from command prompt:
pip install pyHook-1.5.1-cp35-none-win_amd64.whl
I get this error:
pyHook-1.5.1-cp35-none-win_amd64.whl is not a supported wheel on this platform.
I have tried the 32 bit and 64bit version, but have the same error.
Can you help me?
Upvotes: 1
Views: 6756
Reputation: 1
use your python version as below :-
pip3.5 install pyHook-1.5.1-cp35-none-win_amd64.whl
Upvotes: 0
Reputation: 439
.whl files can be installed using:
wheel install your_file_name.whl
Wheel documentation here: https://wheel.readthedocs.io/en/latest/
Cheers!
Upvotes: 2