> On Jan 13, 2006, at 2:55 PM, Jonathan Hayward wrote: > error: invalid Python installation: unable to open > /usr/lib/python2.4/config/Makefile (No such file or > directory) > > What should I do to install/workaround the Makefile so I can get sqlalchemy > working?
On 1/13/06, Michael Bayer <[EMAIL PROTECTED]> wrote: > Without knowing much about setuptools, I'd say your Python installation is > broken. Ive cc'ed PJE on this in case he has some insight. As someone mentioned in the other thread, Ubuntu splits Python into two packages, python and python-dev. Only the python package is installed by default; the /usr/lib/python2.4/config/Makefile file is in the python-dev package. You'll need to "apt-get install python-dev" (or install it from Synaptic), then you should be able to install SQLAlchemy. -- Robin Munn [EMAIL PROTECTED] GPG key 0xD6497014

