UcanDoIt
UcanDoIt

Reputation: 1845

how to install pyHook on windows 10

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

Answers (2)

Mourad Rashwan
Mourad Rashwan

Reputation: 1

use your python version as below :-

pip3.5 install pyHook-1.5.1-cp35-none-win_amd64.whl

Upvotes: 0

angs
angs

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

Related Questions