The python2.6 is upgraded to python2.7 under CentOS6.5, and Ipython is installed, and the following information is displayed when the Ipython is started:
WARNING: IPython requires SQLite, your history won't be saved
Here's how to fix it:
download and unzip the SQLite package, enter the command:
#wget http: / /www .sqlite .org /sqlite -autoconf -3071401 .tar .gz
#tar zxvf sqlite-autoconf-3071401.tar.gz
Configure, compile, install, and enter commands in the sqlite-autoconf-3071401 directory:
#./configure--prefix=/usr/local/
#make
#make Install
To recompile the installation python2.7, enter the command:
#cd Python-2.7.3
#./configure
#make All
#make Install
#make Clean
#make Distclean
Restart Ipython View information
#ipython
# # #After completing the above steps, you can solve the above problems # #
Resources:
1, http://blog.chinaunix.net/uid-22476414-id-3401048.html
2, http://www.hztarena.net/qianrushipeixun/2012/1214/2501.html