Install PIL on Windows 7 64-bit PC

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

requires python version 2.7 which is not found in the registry

What can I do?

+4
source share
1 answer

This problem has already been considered earlier, although there is a problem with the python and windows registry for this library, you create a new own registry at the following address HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.7\InstallPath , and then copy and paste the value there which is located at HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath

See more details.

Install SetupTools on 64-bit Windows

+7
source

Source: https://habr.com/ru/post/1434708/


All Articles