मैंने रजिस्ट्री में अजगर स्थापना को पंजीकृत करने के लिए एक स्क्रिप्ट ( http://effbot.org/zone/python-register.htm ) को समाप्त किया । मैं रजिस्ट्री में अजगर होने के लिए पायथन को चुन सकता हूं , विंडोज इंस्टॉलर चला सकता हूं , फिर रजिस्ट्री को वापस सेट कर सकता हूं :
# -*- encoding: utf-8 -*-
#
# script to register Python 2.0 or later for use with win32all
# and other extensions that require Python registry settings
#
# Adapted by Ned Batchelder from a script
# 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[: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_LOCAL_MACHINE, regpath)
except EnvironmentError:
try:
reg = CreateKey(HKEY_LOCAL_MACHINE, regpath)
except Exception, e:
print "*** Unable to register: %s" % e
return
SetValue(reg, installkey, REG_SZ, installpath)
SetValue(reg, pythonkey, REG_SZ, pythonpath)
CloseKey(reg)
print "--- Python %s at %s is now registered!" % (version, installpath)
if __name__ == "__main__":
RegisterPy()
इस स्क्रिप्ट को उस पायथन के साथ चलाएं जिसे आप पंजीकृत करना चाहते हैं, और इसे रजिस्ट्री में दर्ज किया जाएगा। ध्यान दें कि विंडोज 7 और विस्टा पर, आपको प्रशासक विशेषाधिकारों की आवश्यकता होगी।