mac安装mysql-python遇到的问题

在mac下用

 easy_install mysql-python

完成安装后import的时候出现Reason: image not found

网上查了下,记录下来


解决 Reason: image not found 错误

  安装完MySQL-python包后,让我们import MySQLdb,此时出现一个错误,错误最后一行写着 Reason: image not found。

  解决方法是在终端执行:

$ sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib
$ sudo ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql

  之后重启idle,成功导入MySQLdb。


你可能感兴趣的:(mac安装mysql-python遇到的问题)