Latest PIL installer failed to install.

PhilC pcooke at philc.net
Tue Oct 19 01:28:31 EDT 2004


I get the same trying to install Scientific Python.

The top of the registerPython script is as below.
What do I need to change under "# tweak as necessary" ?

Thanks,

PhilC


#
# script to register Python 2.0 or later for use with win32all
# and other extensions that require Python registry settings
#
# written by Joakim Löw for Secret Labs AB / PythonWare
#
# source:
# http://www.pythonware.com/products/works/articles/regpy20.htm

import sys

from _winreg import *

# tweak as necessary
version = sys.version[:2]
installpath = sys.prefix

regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\" % (version)
installkey = "InstallPath"
pythonkey = "PythonPath"
pythonpath = "%s;%sLib\\;%sDLLs\\" % (
    installpath, installpath, installpath




More information about the Python-list mailing list