Download python 3.3.2 http://www.python.org/getit/
development libraries for sqlite3 (and other modules, such as readline, ssl, etc.) need to be installed before compiling Python from source. The C source code for the sqlite Python module is included in the Python source; however, compiling it requires the sqlite3 development file. This is not a separate library, but part of Python.
If you installed from the source, you need to install development libraries for sqlite3.
sudo apt-get install libsqlite3-dev
What are the packages / libraries that I have to install before compiling Python from the source? https://askubuntu.com/questions/21547/what-are-the-packages-libraries-i-should-install-before-compiling-python-from-so
sudo apt-get install libreadline-dev sudo apt-get install libssl-dev
List of common development environments ...
build-essential (obviously) libz-dev (also pretty common and essential) libreadline-dev (or the Python prompt is crap) libncursesw5-dev libssl-dev libgdbm-dev libsqlite3-dev libbz2-dev liblzma-dev tk-dev libdb-dev libncursesw5-dev libreadline5-dev libssl-dev libgdbm-dev libc6-dev libsqlite3-dev
Install python
tar xf Python-3.3.2.tar.xz ./configure make sudo make all install
The demz
source share