How to build sqlite for Python 2.4?

Posted by Verrtex on Stack Overflow See other posts from Stack Overflow or by Verrtex
Published on 2009-09-21T17:09:59Z Indexed on 2010/05/10 18:24 UTC
Read the original article Hit count: 375

Filed under:
|
|

I would like to use pysqlite interface between Python and sdlite database. I have already Python and SQLite on my computer. But I have troubles with installation of pysqlite. During the installation I get the following error message:

error: command 'gcc' failed with exit status 1

As far as I understood the problems appears because version of my Python is 2.4.3 and SQLite is integrated in Python since 2.5. However, I also found out that it IS possible to build sqlite for Python 2.4 (using some tricks, probably).

Does anybody know how to build sqlite for Python 2.4?

As another option I could try to install higher version of Python. However I do not have root privileges. Does anybody know what will be the easiest way to solve the problem (build SQLite fro Python 2.4, or install newer version of Python)? I have to mention that I would not like to overwrite the old version version of Python.

Thank you in advance.

© Stack Overflow or respective owner

Related posts about python

Related posts about sqlite