Hi, I am using the recently released python10.10 and wanted to install python2.5.4 on my system to do some app engine development, and this is what I did:-<div><br></div><div>1.I downloaded Python-2.5.4.tgz.tar from the python site.</div>
<div><a href="http://2.cd">2.cd</a> Downloads<div><span style="font-family: Georgia,serif; font-size: 13px; color: rgb(51, 51, 51);"><pre>tar -xvzf Python-2.5.4.tgz.tar
cd Python-2.5.4
./configure --prefix=/usr/local/python2.5.4
make
make test
sudo make install
sudo ln -s /usr/local/python2.5.4/bin/python /usr/bin/python2.5.4
</pre></span></div><div>However after installing it, when I try using it , I get the below error:-</div><div><div>File &quot;/home/vivek/google_appengine/google/appengine/datastore/datastore_sqlite_stub.py&quot;, line 52, in &lt;module&gt;</div>
<div>    import sqlite3</div><div>  File &quot;/usr/local/python2.5.4/lib/python2.5/sqlite3/__init__.py&quot;, line 24, in &lt;module&gt;</div><div>    from dbapi2 import *</div><div>  File &quot;/usr/local/python2.5.4/lib/python2.5/sqlite3/dbapi2.py&quot;, line 27, in &lt;module&gt;</div>
<div>    from _sqlite3 import *</div><div>ImportError: No module named _sqlite3</div></div><div><br></div><div>How do I get to solve this. Need someone to help me here please!</div><div><br></div></div>