在Python安装MySQL支持模块的方法
时间:2021-07-01 10:21:17
帮助过:28人阅读
刚安装Python的MySQL支持库,一口气遇到了一连串的问题,好在Google一下,均解决。遂记录下,备忘。
1.下载Python的MySQL支持库
地址:http://sourceforge.net/projects/mysql-python/
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.搞定,打完收工
您可能感兴趣的文章:
- Python下的Mysql模块MySQLdb安装详解
- python MySQLdb Windows下安装教程及问题解决方法
- centos 下面安装python2.7 +pip +mysqld
- python Django连接MySQL数据库做增删改查
- python连接mysql数据库示例(做增删改操作)
- python使用mysqldb连接数据库操作方法示例详解
- python mysqldb连接数据库
- python连接mysql并提交mysql事务示例
- python连接MySQL、MongoDB、Redis、memcache等数据库的方法
- python连接mysql调用存储过程示例
- Python2.7简单连接与操作MySQL的方法
- Python实现MySQL操作的方法小结【安装,连接,增删改查等】