4

Python by itself works fine, but when I try to add PIL to it, the installation gives an error message:

python version 2.7 required, which was not found in the registry

What can I do?

Florent
  • 12,310
  • 10
  • 49
  • 58
Tomer Amir
  • 1,515
  • 4
  • 27
  • 54
  • http://stackoverflow.com/questions/2088304/installing-pil-python-imaging-library-in-win7-64-bits-python-2-6-4 – Odomontois Sep 17 '12 at 21:05

1 Answers1

7

This problem had already seen before, it is true that python and windows registry has become problematic for this library, you create a new own registry on the following address HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.7\InstallPath and then copy and paste there the value that is in HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath

Look here for more details

Installing SetupTools on 64-bit Windows

Community
  • 1
  • 1
geoom
  • 6,279
  • 2
  • 26
  • 37