在Python安装MySQL支持模块的方法_MySQL
程序员文章站
2022-05-19 10:03:15
...
python
bitsCN.com
刚安装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.搞定,打完收工bitsCN.com
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.搞定,打完收工bitsCN.com
推荐阅读
-
Ubuntu安装MySQL5.7并配置数据存储路径的方法步骤
-
centos7.2.1511安装jdk1.8.0_151及mysql5.6.38的方法
-
mysql 5.7.17 zip安装配置教程 mysql启动失败的解决方法
-
Python离线安装PIL 模块的方法
-
Python中让MySQL查询结果返回字典类型的方法
-
mysql 5.7.17 安装教程 附MySQL服务无法启动的解决方法
-
在Windows系统上搭建Nginx+Python+MySQL环境的教程
-
Mysql数据库绿色版安装教程 解决系统错误1067的方法
-
python访问mysql数据库的实现方法(2则示例)
-
Python中MySQLdb和torndb模块对MySQL的断连问题处理