在Python安装MySQL支持模块的方法
程序员文章站
2024-02-26 14:22:40
刚安装python的mysql支持库,一口气遇到了一连串的问题,好在google一下,均解决。遂记录下,备忘。 1.下载python的mysql支持库 地址: 2.解压编译...
刚安装python的mysql支持库,一口气遇到了一连串的问题,好在google一下,均解决。遂记录下,备忘。
1.下载python的mysql支持库
地址:
2.解压编译
python setup.py install
遇到第一个问题:
_mysql.c:44:23: error: my_config.h: no such file or directory
解决办法,编辑setup_posix.py文件,将mysql_config.path设置成你安装的mysql的目录,比如/usr/local/mysql/bin/mysql_config
3.在python中"import mysqldb",遇到问题:
importerror: libmysqlclient_r.so.16: cannot open shared object file: no such file or directory
解决办法,编辑/etc/ld.so.conf.d/mysql-i386.conf文件
改成正确的mysql安装地址,比如我的:usr/local/mysql/lib/mysql
存盘后退出,执行ldconfig
4.搞定,打完收工
1.下载python的mysql支持库
地址:
2.解压编译
python setup.py install
遇到第一个问题:
_mysql.c:44:23: error: my_config.h: no such file or directory
解决办法,编辑setup_posix.py文件,将mysql_config.path设置成你安装的mysql的目录,比如/usr/local/mysql/bin/mysql_config
3.在python中"import mysqldb",遇到问题:
importerror: libmysqlclient_r.so.16: cannot open shared object file: no such file or directory
解决办法,编辑/etc/ld.so.conf.d/mysql-i386.conf文件
改成正确的mysql安装地址,比如我的:usr/local/mysql/lib/mysql
存盘后退出,执行ldconfig
4.搞定,打完收工
推荐阅读
-
MySQL 的模块不能安装的解决方法
-
安装MySQL在最后的start service停住了解决方法
-
在Python安装MySQL支持模块的方法
-
安装MySQL在最后的start service停住了解决方法_MySQL
-
CentOS在使用yum install php-mysql安装php时报错的解决方法
-
您的服务器不支持MySql数据库,无法安装论坛程序的解决方法
-
在Python的struct模块中进行数据格式转换的方法
-
在Python程序中操作MySQL的基本方法
-
python安装PIL模块时Unable to find vcvarsall.bat错误的解决方法
-
python安装PIL模块时Unable to find vcvarsall.bat错误的解决方法