My computer runs on Windows 7 (x64) and I installed Anaconda 2 and Anaconda 3 both in 32 bit version, to be able to use Python 2.7 or 3.5 depending on my projects. I'm trying to install pyHook for Python 2.7 and I'm struggling.
I tried with pip and the first windows installer of this page:
pip install C:\Users\...\Downloads\pyHook-1.5.1-cp27-cp27m-win32.whl
but I get the following error:
pyHook-1.5.1-cp27-cp27m-win32.whl is not a supported wheel on this platform.
Just to be sure I checked which version of pip is running and it turns out it is the one of Python 3. So I had a look on the web and found this and this solutions. I tried them:
pip-2.7 pip install pyhook
py -2.7 pip install C:\Users\...\Downloads\Downloads\pyHook-1.5.1-cp27-cp27m-win32.whl
But apparently python doesn't recognized any of these comands:
'pip-27' is not recognized as an internal or external command...
C:\Program Files (x86)\Anaconda2\python.exe: can't open file 'pip': [Errno 2] No such file or directory
I must admit that I'm out of idea. Has anyone already encountered this problem?