How do I install pyhook for python 3.4? I can find the files for 2.7, but not 3.4.
Does anyone have the download link to get pyhook for python 3.4? Any help would be greatly appreciated.
You can download compiled version from here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyhook
After this run pip install pyHook‑1.5.1‑cp34‑cp34m‑win_amd64.whl
It looks like it exists in PyPi, https://pypi.python.org/pypi/pyHook/1.5.1.
Try installing via:
pip install pyhook
If it complains that it could not find a version that satisfies requirements, then the developer has probably not released a version compatible with Python 3.x.
In such a case, if the library is simple/small enough, you may be able to modify the source to be Python 3.x compatible.
Related
I am trying to install tobii_research for a project and I was following the instructions on http://developer.tobiipro.com/python/python-getting-started.html
I already have python 3.7.6 and pip 21.1.2 installed on my Mac.
When I run pip install tobii-research I get:
ERROR: Could not find a version that satisfies the requirement tobii_research (from versions: none)
ERROR: No matching distribution found for tobii-research
Was there something I forgot to install?
I can not for the life of me figure out how to install this manually either.
Help with pip, or installing manually would be greatly appreciated, but you might have to explain it to me like I am stupid.
Thanks in advance.
It appears that you are not running the correct python version for the versions of the package that are available. If you look at the wheel files available on the tobii-research Downloads page, the software is packaged for either python 2.7 or 3.6.
When trying to install this package myself, I get the same error message as you when trying to install it for python 3.8, but the package installs successfully with my python 2.7 installation.
I would recommend installing a compatible version of python and then running pip through that version using the following command:
[specific_python_installation] -m pip install tobii-research
Try doing it with pip again, but replace the underscore with a hyphen as shown below:
pip install tobii-research
I saw on the PyPi website that they only have it for Python 3.8, so I downloaded that Python version from their official website and installed it (do not add it to path).
Then, I created a virtual environment selecting 3.8 as the Python version (refer to this answer) and activated that virtual environment.
Finally, I run pip install tobii_research and it worked.
One thing that helped me - required Python version. For example, for the version 1.10.2 (which is current at the moment of writing this) only Python 3.10 is supported. Check the list of files distributed within this version.
I was able to install the package on Windows with Python 3.10 but on MacOS I had the same problem and wasn't able to resolve this - I assume it's a problem with the architecture, as there is no version for arm64 if you have a Mac with M1 processor.
Greeting, I installed the mingw in MSYS2, but the python installed was the 3.8 version and I want to use TensorFlow with the GTK, but TensorFlow 2.0 is supported only with versions 3.6 and 3.7.
So, how should I install the python with a specific version? Spent a hour looking for the solving, but didn't find anything useful.
Thanks
Go to mysys2 repo site, http://repo.msys2.org/msys/x86_64/
Download a copy of older version, for example, http://repo.msys2.org/msys/x86_64/python-3.6.6-1-x86_64.pkg.tar.xz
Install the package with pacman -U python-3.6.6-1-x86_64.pkg.tar.xz
I am not sure if you need to uninstall python3.8 first before running commands above.
Ive been trying for a long time different commands but i always kept getting
Please SPecify --curl....
I tried installing pycurl in a terminal, but it was not working
Pycurl installers can directly be downloaded from from https://dl.bintray.com/pycurl/pycurl/ for your respective Python version
What's the python version you are using? PycURL is only supported for specific versions.
Python 2.7 or 3.4 through 3.6.
Other Python versions won't be able to install PycURL via pip or easy_install , you'll have to manually compile it.
I have searched quite a bit regarding this and I've tried some of these methods myself but I'm unable to work with OpenCV.So can anyone of you help me install OpenCV for python 3.5.1?
I'm using anaconda along with Pycharm in windows
Or is this not possible and i have to use python 2.7?
Thanks in advance
First you need to install Microsoft Visual C++ 2015 Redistributable, which you can download from https://www.microsoft.com/en-us/download/details.aspx?id=53587.
Then you can download the wheel file from
http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv.
Make sure you download the file which
corresponds to your python version. For example: my python version
is 3.5 so I downloaded
opencv_python-3.2.0+contrib-cp35-cp35m-win_amd64.whl.
And install it with "pip install filename".
For anyone who would like to install OpenCV on Python 3.5.1,use this library called
opencv-contrib-python
This library works for Python 3.5.1
Quick solution for anaconda users - Go to anaconda prompt run -
conda install opencv
I don't really know how we can help you.
Because you didn't specify the OS.
As far as I know, there are many resources in answers.opencv.org.
A question similar what you asked is answered here.
For OS:Windows 10 and Python version: 3.5.1 & 3.6, this worked for me
pip install opencv-contrib-python
I am trying to install py2exe. I have Python 2.7 installed on my machine. Their website mentions that they have released support for 2.7, but when I try to install, it mentions that Python Version 2.6 required, which was not found in the registry. I have downloaded py2exe-0.6.9.
Any one else come up with this problem and figured out how to solve it?
Try this link. It's py2exe for Python 2.7.