2013-05-19 38 views
1

爲了讓MySQLdb運行,​​我已經經歷了數百個建議(例如,這裏是在stackoverflow)上安裝MySQL的各種可能性。安裝了Xcode和命令行代碼後,我立即解決了初始的command 'clang' failed with exit status 1錯誤,並顯示以下錯誤消息:mach-o, but wrong architecture。 我有Python 64位,MySQL 64位安裝(請參閱下文)。 我也安裝了mysql-connector-python-1.0.10。 這裏有什麼問題?如何使用Python 2.7和MySQL 5.6.11在Mountain Lion上運行MySQLdb x86_64

>>> 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) 

回答

0

OK:MySQLdb的需要MySQL不超過5.5版本更高。我有版本5.6。 所以修好了。

相關問題