2

免责声明:我已经尝试了许多搜索和程序来使其正常工作,正如我在尝试谷歌这个问题时发现的那样,但似乎没有一个工作。

当我尝试MySQLdbPython Interactive Shell下导入时,我得到以下信息...

 Python 2.7.1 (r271:86882M, Nov 30 2010, 10:35:34) 
    [GCC 4.2.1 (Apple Inc. build 5664)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import MySQLdb
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "MySQLdb/__init__.py", line 23, in <module>
        (version_info, _mysql.version_info))
    ImportError: this is MySQLdb version (1, 2, 4, 'beta', 4), but _mysql is version (1, 2, 4, 'final', 1)

关于做什么的任何建议?我已经MySQLdb通过安装pip

4

1 回答 1

1

我没有 Mac,所以我不能真正测试这个,但是,Mac 似乎有这个模块的问题。你看过这个人的网站吗?使用 Mac 进行设置似乎非常彻底。

http://learninglamp.wordpress.com/2010/02/21/mysqldb-python-mysql-and-os-xa-match-made-in-satans-bum/

希望这对您有所帮助。

于 2013-07-21T12:45:35.683 回答