I'm running Python 2.7 on Windows 7 64-bit, and when I run the installer for setuptools it tells me that Python 2.7 is not installed. The specific error message is:

`Python Version 2.7 required which was not found in the registry`

My installed version of Python is:

`Python 2.7 (r27:82525, Jul  4 2010, 07:43:08) [MSC v.1500 64 bit (AMD64)] on win32`

I'm looking at the setuptools site and it doesn't mention any installers for 64-bit Windows. Have I missed something or do I have to install this from source?

link|improve this question

feedback

5 Answers

up vote 27 down vote accepted

Apparently (having faced related 64- and 32-bit issues on OS X) there is a bug in the Windows installer. I stumbled across this workaround, which might help?

link|improve this answer
feedback

Problem: you have 64-bit Python, and a 32-bit installer. This will cause problems for extension modules.

The reasons why the installer doesn't finds Python is the transparent 32-bit emulation from Windows 7. 64-bit and 32-bit programs will write to different parts of the Windows registry.

64-bit: HKLM|HKCU\SOFTWARE\ 32-bit: HKLM|HKCU\SOFTWARE\wow6432node\.

This means that the 64-bit Python installer writes to HKLM\SOFTWARE\Python, but the 32-bit setuptools installer looks at HKLM\SOFTWARE\wow6432node\Python (this is handled by windows automatically, programs don't notice`.

Usally, you have three choices:

  • the "clean" way: use 32-bit Python if you have to use 32-bit modules or extensions
  • copy HKLM\SOFTWARE\Python to HKLM\SOFTWARE\wow6432node\Python, but this will cause problems with binary distributions
  • only use 64-bit installers (see below)
  • install pure Python modules with setuptools instead of the distutils installer

For setuptools, you can't use a 32-bit installer for 64-bit Python as it includes binary files. But there's a 64-bit installer at http://www.lfd.uci.edu/~gohlke/pythonlibs/ (has many installers for other modules too)

link|improve this answer
1  
Great link for unofficial installers! – drozzy Feb 3 '11 at 15:11
Thanks. Solved my problem for Python 2.7 with amd64. – nmat Aug 20 '11 at 2:53
feedback

Made reg file to automatically change the registry for you.

Works if its installed in "C:\Python27"

Download Here

link|improve this answer
feedback

For 64-bit Python on Windows download ez_setup.py and run it; it will download the appropriate .egg file and install it for you.

At the time of writing the .exe installer does not support 64-bit versions of Python for Windows, due to a distutils installer compatibility issue.

link|improve this answer
feedback

To allow windows installers to find the installed python direcotry in win7, OR, change which python install to install an installer into, add the Installed path into the InstallPath registry key's (Default) value.

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.X\InstallPath

Where "X" is the python version. (i.e. 2.5, 2.6, 2.7)

link|improve this answer
you mean 2.6 right? – Joe DF Mar 5 at 4:10
or 2.7, or 2.5, etc. – monkut Mar 5 at 4:41
lol, just a minor edit... :D – Joe DF Mar 5 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.