1

我正在尝试安装 MySQLdb python,但由于出现体系结构错误而无法使其正常工作。

>>> import MySQLdb
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "build/bdist.macosx-10.6-x86_64/egg/MySQLdb/__init__.py", line 19, in <module>
  File "build/bdist.macosx-10.6-x86_64/egg/_mysql.py", line 7, in <module>
  File "build/bdist.macosx-10.6-x86_64/egg/_mysql.py", line 6, in __bootstrap__
ImportError: dlopen(/Users/jkeesh/.python-eggs/MySQL_python-1.2.3-py2.6-macosx-10.6-x86_64.egg-tmp/_mysql.so, 2): no suitable image found.  Did find:
    /Users/jkeesh/.python-eggs/MySQL_python-1.2.3-py2.6-macosx-10.6-x86_64.egg-tmp/_mysql.so: mach-o, but wrong architecture

这是一个常见的问题,我已经阅读了很多很多资料,包括:

Python MySQL错误架构错误

http://www.mechanicalgirl.com/view/installing-django-with-mysql-on-mac-os-x/

Mac OS 10.6.2 Snow Leopard 上的 Django + MySQL

在 Mac OS X 上安装 MySQLdb

和许多其他链接。

看来问题是 32 位 64 位不匹配,但我不确定正确的组合是什么,或者不匹配到底是什么。

我已经从 pip、Mac 端口安装,并从源代码构建。我尝试将 和 设置ARCHFLAGSi386x86_64

我试过设置VERSIONER_PYTHON_PREFER_32_BITVERSIONER_PYTHON_PREFER_64_BIT偏好。

我正在运行 Mac OS X 10.6.6

我已经安装了mysql/usr/local/mysql

$ file $(which ./mysql)
   ./mysql: Mach-O executable i386

我有mysql版本5.5.12

我有64 bit Python 2.6.6.

我的系统架构是:

>>> platform.platform()
'Darwin-10.6.0-i386-64bit'

$ file $(which python) 
   /opt/local/bin/python: Mach-O 64-bit executable x86_64

如果有任何链接,您可以指出我或尝试的建议,我将不胜感激。无论我尝试什么,我都陷入了死胡同并且得到了同样的“错误的架构”错误。

4

2 回答 2

2

尝试将其添加到您的.bashrcor中.bash_profile

PATH="/usr/local/mysql/bin:${PATH}"
export PATH
export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
export VERSIONER_PYTHON_PREFER_64_BIT=no
export VERSIONER_PYTHON_PREFER_32_BIT=yes
于 2011-09-01T12:37:30.890 回答
0

我已经解决了我自己的问题,所以希望这对有类似问题的人有所帮助。

我相信我安装了 32 位 mysql。

我卸载了所有版本的mysql

我回去从源头安装了 mysql 5.1,但我认为 mysql 5.1 x86_64 位 dmg 或二进制文件也可以。

我在这篇文章http://hivelogic.com/articles/compiling-mysql-on-snow-leopard/中使用了这个 make 命令

我遇到了权限问题,终于让它工作了

sudo mysqld_safe --skip-grant-tables &

我从这里安装了 MySQL-python 1.2.3c1

http://pypi.python.org/pypi/MySQL-python/1.2.3c1

于 2011-07-20T23:20:28.880 回答