1

我确实从以下位置下载了包: lfd.uci.edu

但是当我从命令提示符运行它时:

pip install pyHook-1.5.1-cp35-none-win_amd64.whl

我收到此错误:

pyHook-1.5.1-cp35-none-win_amd64.whl is not a supported wheel on this platform.

我试过 32 位和 64 位版本,但有同样的错误。

你能帮助我吗?

4

2 回答 2

2

.whl files can be installed using:

wheel install your_file_name.whl

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

Cheers!

于 2016-10-12T23:49:32.237 回答
0

使用你的python版本如下: -

pip3.5 install pyHook-1.5.1-cp35-none-win_amd64.whl
于 2017-08-31T17:18:01.903 回答