This was driving me crazy; neither the egg nor the setup.py thingy in the source download were working to install
Python appscript. So I opened setup.py and changed this:
try:
from setuptools import setup, Extension
except ImportError:
print "Note: couldn't import setuptools so using distutils instead."
from distutils.core import setup, Extension
to
(
Read more... )