python - 如何使用 Python 2.7 和 MySQL 5.6.11 x86_64 让 MySQLdb 在 Mountain Lion 上运行

标签 python mysql mysql-python

为了让 MySQLdb 运行,我已经按照数百条建议(例如在 stackoverflow 上的此处)尝试了安装 MySQL 的各种可能性。安装 Xcode 和命令行代码后,我解决了最初的 command 'clang' failed with exit status 1 错误,现在出现以下错误消息:mach-o,但架构错误。 我安装了 Python 64 位和 MySQL 64 位(请参见下文)。 我还安装了 mysql-connector-python-1.0.10。 这里有什么问题?

>>> import MySQLdb
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/MySQLdb/__init__.py", line 19, in <module>
import _mysql
ImportError: dlopen(/Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/_mysql.so, 2): no suitable image found.  Did find:
/Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/_mysql.so: mach-o, but wrong architecture

Python 版本:

>>>print (sys.version)
2.7.2 (default, Jun 16 2012, 12:38:40) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)]

>>> print platform.architecture()
('64bit', '')

MySQL版本:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.6.11 MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show global variables like 'version_compile_machine';
+-------------------------+--------+
| Variable_name           | Value  |
+-------------------------+--------+
| version_compile_machine | x86_64 |
+-------------------------+--------+
1 row in set (0,00 sec)

最佳答案

OK:MySQLdb 要求 MySQL 不高于 5.5 版。我有 5.6 版。 所以修复它。

关于python - 如何使用 Python 2.7 和 MySQL 5.6.11 x86_64 让 MySQLdb 在 Mountain Lion 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16633349/

相关文章:

python - 属性错误 : 'datetime.date' object has no attribute 'date'

python - jinja flask 和循环属性

python - 如何增加qtablewidget的行高和列宽

php - mysql插入查询的优化代码

mysql - mysql nodejs中的IN子句

c# - ASP.NET 中的 GridView 问题

python - 从字符串**正确地**创建一个 lambda 函数

python /MySQLdb : Insert values in a DB from raw_input

python - 仅获取一个 MySQL 列作为列表而不是元组

python - 为什么数据库更改只显示在当前游标中?