博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下安装MySQLdb模块(Python)
阅读量:5926 次
发布时间:2019-06-19

本文共 1026 字,大约阅读时间需要 3 分钟。

一、MySQLdb-python模块

https://pypi.python.org/pypi/MySQL-python

`

二、安装依赖包

yum -y install python-devel mysql-devel

`

三、解压文件并修改site.cfg

tar -xf  MySQL-python-1.2.3.tar.gz

cd  MySQL-python-1.2.3

找到本地MySQL安装目录下的mysql_config,将site.cfg文件中mysql_config修改为该地址,并将threadsafe修改为False.

[root@localhost MySQL-python-1.2.3]# more site.cfg

[options]
# embedded: link against the embedded server library
# threadsafe: use the threadsafe client
# static: link against a static library (probably required for embedded)
embedded = False
threadsafe = False
static = False
# The path to mysql_config.
# Only use this if mysql_config is not on your PATH, or you have some weird
# setup that requires it.
mysql_config = /usr/local/mysql/bin/mysql_config
# The Windows registry key for MySQL.
# This has to be set for Windows builds to work.
# Only change this if you have a different version.
registry_key = SOFTWARE\MySQL AB\MySQL Server 5.0

四、编译和安装

python setup.py build

python setup.py install

转载于:https://www.cnblogs.com/xialiaoliao0911/p/7523936.html

你可能感兴趣的文章
js闭包
查看>>
度量时间差
查看>>
网络营销与电子商务
查看>>
可输入的模糊搜索ComBox控件
查看>>
MySQL 5.6为什么关闭元数据统计信息自动更新&统计信息收集源代码探索
查看>>
Linux 下mysql永久更改字符集
查看>>
apache prefork模式优化错误
查看>>
jmeter高级用法例子,如何扩展自定义函数
查看>>
lvs
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
JS页面刷新保持数据不丢失
查看>>
清橙A1202&Bzoj2201:彩色圆环
查看>>
使用data pump工具的准备
查看>>
springMVC---级联属性
查看>>
get和post区别
查看>>
是机遇还是挑战?---浅谈谷歌收购摩托罗拉移动
查看>>
项目总结26:java调用webservice接口(asmx)
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
基于HTML5手机上下滑动翻页特效
查看>>
打造自己博客(wordpress)的wap手机版本
查看>>