python - 无法在 OS X 10.10 Yosemite 上安装 Python-MySQL

标签 python mysql macos osx-yosemite

我无法安装 Python-MySQL,我已经尝试使用 easy_install、pip 和 sources.. 而且我总是得到同样的错误。这是我得到的:

Matts-MacBook:Python matt$ sudo easy_install MySQL-python
Searching for MySQL-python
Reading https://pypi.python.org/simple/MySQL-python/
Best match: MySQL-python 1.2.5
Downloading https://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-           1.2.5.zip#md5=654f75b302db6ed8dc5a898c625e030c
Processing MySQL-python-1.2.5.zip
Writing /tmp/easy_install-i14rIs/MySQL-python-1.2.5/setup.cfg
Running MySQL-python-1.2.5/setup.py -q bdist_egg --dist-dir /tmp/easy_install-i14rIs/MySQL-    python-1.2.5/egg-dist-tmp-mG9d4K
clang: warning: -framework CrashReporterSupport: 'linker' input unused
In file included from _mysql.c:44:
/usr/local/mysql/include/my_config.h:349:11: warning: 'SIZEOF_SIZE_T' macro redefined
#define SIZEOF_SIZE_T  SIZEOF_LONG
      ^
/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pymacconfig.h:56:17: note: 
  previous definition is here
#        define SIZEOF_SIZE_T           4
^In file included from _mysql.c:44:
/usr/local/mysql/include/my_config.h:443:9: warning: 'HAVE_WCSCOLL' macro redefined
#define HAVE_WCSCOLL
    ^
/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pyconfig.h:912:9: note: 
  previous definition is here
#define HAVE_WCSCOLL 1
    ^
_mysql.c:1589:10: warning: comparison of unsigned expression < 0 is always false
  [-Wtautological-compare]
    if (how < 0 || how >= sizeof(row_converters)) {
        ~~~ ^ ~
3 warnings generated.
ld: warning: directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.Internal.sdk/System/Library/PrivateFrameworks'
ld: framework not found CrashReporterSupport
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: Setup script exited with error: command 'cc' failed with exit status 1

最佳答案

我已经解决了如下问题:

  1. 安装 OSX command line tools 后, 安装 MySQL-python。

    $ xcode-select --install

    $ sudo pip install MySQL-python

    (发出了三个警告消息,但是,“已成功安装 MySQL-python”...)

  2. Python 解释器的“import MySQLdb”错误(“找不到图像”错误)已通过以下方式解决:

    $ sudo ln -s/usr/local/mysql/lib/libmysqlclient.18.dylib/usr/lib/

我的环境,“OSX Yosemite,mysql 5.6.21,Python 2.7.8”。

祝你好运。

关于python - 无法在 OS X 10.10 Yosemite 上安装 Python-MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25794121/

相关文章:

mysql - COUNT(DISTINCT X) MySQL 查询没有给出我需要的结果

xcode - 什么是 osx 上的 config.log 以及它在哪里?

python - Flask-pymongo 运行时错误 : Working outside of application context

python - shutil.move() 到网络驱动器权限被拒绝

php - 将两个查询合并为一个

c++ - 是在 Mac 上使用 libc++ 或 libstdc++ 构建的库

objective-c - 如何将 NSLayoutConstraint 添加到以编程方式创建的 NSView 子类的 subview 中?

python - 禁止来自 Cython 的警告

python - 自定义模块 Odoo 上不存在错误列

java - 在不同机器上的Java netbeans中的MySQL中创建数据库