The sqlite3 module is included in Python version 2.5+. However, I am stuck with version 2.4. I uploaded the sqlite3 module files, added the directory to sys.path, but I get
I had same problem with CentOS and python 2.4
My solution:
yum install python-sqlite2
and try following python code
try: import sqlite3 except: from pysqlite2 import dbapi2 as sqlite3