I cannot use sqlite3 (build python package). The reason of the is missing _sqlite3.so. I found that peoples had the same problem and they resolved it here.
The solutions is given in one sentence:
By building from source and moving the library to /usr/lib/python2.5/lib-dynload/ I resolved the issue.
However, I do t understand the terminology. What does it mean "building from the source"? What should be build from the source? New version of Python? SQLite? And how one actually build from the source? Which steps should be done?