web-dev-qa-db-ja.com

Python-MySQLをOSX 10.10Yosemiteにインストールできません

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
13
Matt

私は次のように問題を解決しました:

  1. OSXコマンドラインツール をインストールした後、MySQL-pythonをインストールします。

    $ xcode-select --install

    $ Sudo pip install MySQL-python

    (3つの警告メッセージが発行されますが、「MySQL-pythonが正常にインストールされました」...)

  2. Python interpreter( "image not found"エラー)からの "importMySQLdb"エラーは次の方法で解決されました。

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

私の環境、「OSX Yosemite、mysql 5.6.21、Python 2.7.8」。

幸運を。

15
cloudera

より高度なソリューションであるため、easy-installの代わりにpipを使用することをお勧めします。理由については ここ を参照してください。

XCodeエラーも発生するため、OSXコマンドラインツールがインストールされていない可能性があります。 MySQL-pythonをコンパイルするために必要です。ログイン後、 Apple からダウンロードできます。

それでもエラーが発生する場合は、 homebrew 経由でmysql-clientをインストールしてください。 brew install mysql --client-only

2
Manuel Riel

最初にhomebrew経由でmysqlをインストールします。homebrewのインストールについては、このリンクを参照してください http://coolestguidesontheplanet.com/installing-homebrew-os-x-yosemite-10-10-package-manager-unix-apps/ 次に

pip uninstall MySQL-python
brew install mysql
pip install MySQL-python
0
Geek