Chinaunix首页 | 论坛 | 博客
  • 博客访问: 534053
  • 博文数量: 118
  • 博客积分: 3995
  • 博客等级: 中校
  • 技术积分: 1276
  • 用 户 组: 普通用户
  • 注册时间: 2005-11-15 12:15
文章分类

全部博文(118)

文章存档

2014年(1)

2013年(1)

2010年(6)

2009年(27)

2008年(10)

2007年(33)

2006年(38)

2005年(2)

我的朋友

分类: Python/Ruby

2009-02-12 23:34:55

在linux下按照python2.5后,import sqlite3出错,提示没有按照此模块;
原来是需要先安装sqlite
1) 下载sqlite并安装
$ curl -o sqlite-amalgamation-3.5.6.tar.gz
$ tar xzf sqlite-amalgamation-3.5.6.tar.gz
$ cd sqlite-3.5.6
$ ./configure --prefix=path_to_install
$ make && make install
 
2) 安装python2.5
$ curl -o Python-2.5.tar.bz2
$ tar xjf Python-2.5.tar.bz2
$ cd Python-2.5
$ ./configure --prefix=path_to_install    # 跟sqlite相同的目录即可
$ make &&  make install
 
此时调用python进行import sqlite3 就ok
阅读(1169) | 评论(0) | 转发(0) |
0

上一篇:awk里的位运算

下一篇:bochs编译安装

给主人留下些什么吧!~~