Python version 2.7 required, which was wasn't found in the Regi

Source: Internet
Author: User
When installing the PIL library, you will be prompted directly: Python version 2.7 required, which is not found in the registry.

The main idea is that you can't find the registry and search the solution online.

Create a new register.py file to write code to:

The code is as follows:


Import Sys

From _winreg Import *

# Tweak as necessary
Version = Sys.version[:3]
InstallPath = Sys.prefix

Regpath = "software\\python\\pythoncore\\%s\\"% (version)
Installkey = "InstallPath"
Pythonkey = "PythonPath"
Pythonpath = "%s;%s\\lib\\;%s\\dlls\\"% (
InstallPath, InstallPath, InstallPath
)

Def registerpy ():
Try
reg = Openkey (HKEY_CURRENT_USER, Regpath)
Except EnvironmentError as E:
Try
reg = CreateKey (HKEY_CURRENT_USER, Regpath)
SetValue (Reg, Installkey, REG_SZ, InstallPath)
SetValue (Reg, Pythonkey, REG_SZ, Pythonpath)
Closekey (REG)
Except
Print "* * * Unable to register!"
Return
Print "---Python", version, "is now registered!"
Return
if (QueryValue (Reg, installkey) = = InstallPath and
QueryValue (Reg, pythonkey) = = Pythonpath):
Closekey (REG)
print "= = = Python", version, "is already registered!"
Return
Closekey (REG)
Print "* * * Unable to register!"
Print "* * * you probably has another Python installation!"

Start the command to cut to the register.py file directory to execute:

Reinstall PIL, error resolved, installation succeeded.

If the Win7 64-bit user installs the Python 32-bit program, the above problem does not occur if you select only for the current user. If you select all users, try to resolve them using the methods above.

Tip Other versions of the workaround are similar.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.