以前在gentoo linux的eclipse安装过,想直接用以前的文件,结果不显示。
system:ubuntu12.04
eclipese:3.7.2
python:2.7.3
mysql:5.5
点击pydev for eclipse 下的install就ok了,我这是因为已经安装了显示uninstall。
tar -zxvf MySQL-python-1.2.3.tar.gz
cd MySQL-python-1.2.3
python setup.py build
python setup.py install
error1:运行python setup.py build
sh: mysql_config: command not found
Traceback (most recent call last):
File "setup.py", line 15, in ?
metadata, options = get_config()
File "/root/MySQL-python-1.2.3/setup_posix.py", line 43, in get_config
libs = mysql_config("libs_r")
File "/root/MySQL-python-1.2.3/setup_posix.py", line 24, in mysql_config
raise EnvironmentError("%s not found" % (mysql_config.path,))
安装mysql-python时提示没有mysql_config文件。解决方法:安装mysql-client 和 libmysqlclient-dev包即解决。
error2:If you get this error you need to install python-dev package:
In file included from _mysql.c:29: pymemcompat.h:10:20: error: Python.h: No such file or directory _mysql.c:30:26: error: structmember.h: No such file or directory In file included from /usr/include/mysql/mysql.h:44, from _mysql.c:40: . . . _mysql.c:2808: warning: return type defaults to 'int' _mysql.c: In function 'DL_EXPORT': _mysql.c:2808: error: expected declaration specifiers before 'init_mysql' _mysql.c:2886: error: expected '{' at end of input error: command 'gcc' failed with exit status 1
Installing the python-dev package on Debian is done with apt-get or synaptic:
apt-get install python-dev
完成有,进入到python环境里。
python
>>> import MySQLdb
>>>
如果没有错误,就正常了。
在eclipse菜单栏window下点击preferences->pydev->interpreter python:
点击右上方的aotuconfig,配置python的运行目录和各个lib位置。