# /usr, /usr/local, etc.
PREFIXES = [ '/Library/Python/2.3/',
'/Library/Python/2.4/',
- '/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-pacakges/',
- '/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-pacakges/',
+ '/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/',
+ '/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/',
'/usr/local/lib/',
]
sys.exit()
for i, inst in enumerate(installed):
- print " %d. %s \t%s" % (i+1, inst.mdata["Title"], inst.mdata["Version"])
+ print " %2d. %-40s %s" % (i+1, inst.mdata["Title"], inst.mdata["Version"])
print
ans = raw_input("Enter the number of the install to examine or 'Q' to quit: ")