আমি রেজিস্ট্রিতে পাইথন ইনস্টলেশন নিবন্ধনের জন্য একটি স্ক্রিপ্ট ( 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 এবং ভিস্টায় আপনার প্রশাসকের সুযোগ সুবিধার দরকার আছে।