在mac系统安装Python-MySQL(二)

系统版本:os x 10.11.5

mysql版本:mysql-5.7.18-macos10.12-x86_64

python版本:Python 2.7.10

GCC版本:GCC 4.2.1

二、安装python-mysqldb

1、从sourceforge 下载MySQL-Python,并解压

2、修改site.cfg文件

如果直接安装,会出现mysql_config not found错误,要解决这个错误,在MySQL-python的目录中找到site.cfg文件,打开它,找到以下内容:

# The pathtomysql_config.

# Only use thisifmysql_configisnotonyourPATH,oryou have some weird

# setup that requires it. # mysql_config = /usr/local/bin/mysql_config

修改为:

# The pathtomysql_config.

# Only use thisifmysql_configisnotonyourPATH,oryou have some weird

setup that requires it. # mysql_config = /usr/local/mysql/bin/mysql_config

上文最后一句代码指示的是mysql_config的地址,默认是屏蔽的状态;去掉这一句前面的#,并将mysql_config地址改为/usr/local/mysql/bin/mysql_config,因为这是mysql_config默认的真实地址(mac安装mysql默认这个地址下有mysql_config文件)

3、安装MySQL-Python

终端运行:

$ sudo python setup.py install

运行安装程序并提示成功后,MySQL-Python就安装成功了,这个时候可在终端窗口验证:

$ Python

$ import MySQLdb

如果不报错就说明安装成功!至此安装完成,开始写连接数据库的爬虫

你可能感兴趣的:(在mac系统安装Python-MySQL(二))