pythonewbie wrote: > I am stucked on creating a function to get the Python install > directory (and site-packages directory) with a 100% reliable method...
Only one method is 100% reliable:
try:
import yourextension
except ImportError:
available = False
else:
available = True
Christian
--
http://mail.python.org/mailman/listinfo/python-list
