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.
Related
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.
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.
I installed python 3.5 and it worked fine. Then I downloaded
pymssql-2.1.1.win32-py3.4.exe (md5)
from
https://pypi.python.org/pypi/pymssql/2.1.1#downloads
During the installation it asked for python 3.4 installation and dimmed the Next button.
How can I get around this?
I uninstalled Python3.5 and then installed Python 3.4.3, after that pymssql installer passed through. I didn't realized the python version has to be exact match to the database driver version since I am new to Python.
I am trying to install lxml fro windows 7 from exe given at https://pypi.python.org/pypi/lxml/3.3.5#downloads. I am getting this error saying python 2.7 is missing in registry. I have tried checking in the registry and its very much there. What should I do now?
Make sure you are using the right version of lxml for the version of Pythonyou have installed. For example, for Python 2.7 32-bit, you need to install lxml-3.3.5.win32-py2.7.exe. If you have Python 2.7 64-bit, then you'll need to install lxml-3.3.5.win-amd64-py2.7.exe.
If that doesn't work, reinstall Python as it probably isn't installed correctly.
I've read that there's a nice text-to-speech package called pyttsx that can be included in my Python scripts. As soon as I try to install pyttsx things start falling apart fast. pyttsx is for Python 2.6 (2.7 maybe?) not 3.3. I have 2.7 and 3.3 (also Portable Python 2.7 and 3.2) installed but I can't get setuptools or easy_install to work. I got distribute partly installed but I'm might have seen some errors at the end of its installation so I'm not sure it's working and it won't install pyttsx anyway. There's a Windows .exe program that will let you install Python packages but it won't work for 64-bit Python. I've been searching for answers for days can can't come up with anything specific enough.
How do I install Python packages with 64-bit Python 3.3 on 64-bit Windows 7, or is that even possible?
Best source ever!
this man is a wicked fellow.
With distribute installed, launch the python.exe you want to use.
From within python interactive, run the following code:
from setuptools.command import easy_install
easy_install.main(["-U", "package"])
Substitute "package" for whatever you wish to install.