starbug wrote: > Actually, I had no idea what cElementTree was. I had the impression > that the dependencies of TurboGears would be handled by the Easy > install script. Hmm... I guess I assumed wrong..
easy_install will handle Python dependencies, but it looks like you're missing the development headers/library for the Standard C Library. cElementTree is a C extension so you need to be able to compile it if binaries are not available for your platform. What is your OS distribution? On Linux-type systems, the necessary package is usually named something like libc-dev or libc-devel.

