我花了几个小时尝试在Mac OS X Snow Leopard上安装MySQLdb(Python库)。我正在使用来自SO的these instructions。我一直收到错误,所以我尝试使用MacPorts(作为该问题的答案之一),但我仍然得到同样的错误。有人可以帮忙吗?
import MySQLdb
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "build/bdist.macosx-10.6-universal/egg/MySQLdb/__init__.py", line 19, in <module>
File "build/bdist.macosx-10.6-universal/egg/_mysql.py", line 7, in <module>
File "build/bdist.macosx-10.6-universal/egg/_mysql.py", line 6, in __bootstrap__
ImportError: dlopen(/Users/josephmornin/.python-egg-cache/MySQL_python-1.2.3-py2.6-macosx-10.6-universal.egg-tmp/_mysql.so, 2): no suitable image found.
Did find:
/Users/josephmornin/.python-egg-cache/MySQL_python-1.2.3-py2.6-macosx-10.6-universal.egg-tmp/_mysql.so: mach-o, but wrong architecture
答案 0 :(得分:52)
sudo pip install mysql-python
在10.8.1中为我工作。
答案 1 :(得分:9)
确认。我感觉到你的痛苦。我花了很长时间试图让MySQL使用Macbook Air在Snow Leopard上使用Python 2.6,并且遇到了很多架构问题。最终为我解决的是确保我的Python和MySQL安装都使用像我的Snow Leopard那样的32位架构。
我在这里写了关于我的解决方案,所以也许这会有所帮助:
http://www.markliu.me/2010/jun/09/mysql-and-python-on-32-bit-snow-leopard/
祝你好运......答案 2 :(得分:4)
在.bashrc或.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
答案 3 :(得分:1)
您还可以强制python以32位模式运行:
defaults write com.apple.versioner.python Prefer-32-Bit -bool yes