码迷,mamicode.com
首页 > 数据库 > 详细

运行ipython后显示WARNING: IPython History requires SQLite, your history will not be saved

时间:2014-08-10 12:40:30      阅读:1551      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   问题   html   

在CentOS6.5下将自带的python2.6升级到python2.7,并安装了ipython,启动ipython后显示如下信息:

WARNING: IPython History requires SQLite, your history will not be saved

解决方法如下:

  1. 下载并解压sqlite包,输入命令:
    #wget http://www.sqlite.org/sqlite-autoconf-3071401.tar.gz
    #tar zxvf sqlite-autoconf-3071401.tar.gz
  2. 在sqlite-autoconf-3071401目录下配置、编译、安装,输入命令:
    #./configure --prefix=/usr/local/
    #make
    #make install
  3. 重新编译安装python2.7,输入命令:
    #cd Python-2.7.3
    #./configure 
    #make all
    #make install
    #make clean
    #make distclean
  4. 重新启动ipython查看信息
    #ipython

###完成以上步骤之后即可解决上述问题###

参考资料:

1、http://blog.chinaunix.net/uid-22476414-id-3401048.html

2、http://www.hztarena.net/qianrushipeixun/2012/1214/2501.html

 

运行ipython后显示WARNING: IPython History requires SQLite, your history will not be saved,布布扣,bubuko.com

运行ipython后显示WARNING: IPython History requires SQLite, your history will not be saved

标签:style   blog   http   color   os   ar   问题   html   

原文地址:http://www.cnblogs.com/Nonono-nw/p/3902520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!