-
Python MySQLdb 설치 및 에러Programing/Python 2012. 4. 25. 10:58
(1) 소스코드 다운로드
wget http://downloads.sourceforge.net/mysql-python/MySQL-python-1.2.2.tar.gz
tar zxvf MySQL-python-1.2.2.tar.gz
(2) 설치
python setup.py build
python setup.py install
(3) 에러
가끔 아래와 같은 수십줄의 Error를 뱉으며 설치가 되지 않을수가 있다.
_mysql.c:36:23: error: my_config.h: No such file or directory
_mysql.c:38:19: error: mysql.h: No such file or directory
_mysql.c:39:26: error: mysqld_error.h: No such file or directory
_mysql.c:40:20: error: errmsg.h: No such file or directory
_mysql.c:76: error: expected specifier-qualifier-list before ‘MYSQL’
_mysql.c:90: error: expected specifier-qualifier-list before ‘MYSQL_RES’
그럴땐 tar.gz 압축을 푼 경로밑에 site.cfg를 수정하자 (mysql_config 줄 주석 제거, mysql_config 경로 지정)
mysql_config = /usr/lib/mysql/mysql_config
'Programing > Python' 카테고리의 다른 글
pyDes를 이용한 DES 암호화, 복호화 (0) 2014.07.25 Python urllib2 예제 (0) 2012.06.19 Python Mysql Tutorial (0) 2012.04.16 Python SQLite Tutorial (0) 2012.04.16 requests 기본문법 (0) 2012.04.16