About Python core programming has looked like, ready to do some framework of learning, originally wanted to look at Django, but the friend recommended first look at the lightweight flask or webpy development, so come back at night, Set up under the development environment (PS: In the construction process due to the online reference will inevitably have some problems. )
In the process of building the WEBPY development environment encountered the installation of MySQL error, prompting for
Python version 2.7 required, which was wasn't found in the registry
However, through the universal Internet still found a solution:
I create a register.py file in the e-packing directory, where the following code is pasted into it:
#
# Script to register Python 2.0 or later for use with Win32all
# and other extensions that require Python registry settings
#
# Written by Joakim Loew for Secret Labs Ab/pythonware
#
# Source:
#Http://www.pythonware.com/products/works/articles/regpy20.htm
#
# Modified by Valentine Gogichashvili as described inhttp://www.mail-archive.com/[email protected]/msg10512.html
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!"
if __name__ = = "__main__":
Registerpy ()
Finally, after executing this code on the CMD command line, reinstall MySQL to find the registration information and the Python installation path.
Mysql-python installation of WEBPY development environment construction problem