1

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?

UcanDoIt
  • 1,775
  • 7
  • 20
  • 27

2 Answers2

2

.whl files can be installed using:

wheel install your_file_name.whl

Wheel documentation here: https://wheel.readthedocs.io/en/latest/

Cheers!

Andreas GS
  • 441
  • 5
  • 12
0

use your python version as below :-

pip3.5 install pyHook-1.5.1-cp35-none-win_amd64.whl
Sᴀᴍ Onᴇᴌᴀ
  • 8,218
  • 8
  • 36
  • 58