如何在山狮安装MySQLdb的(How to install MySQLdb on Mountain

2019-06-26 17:11发布

我是新来的Python和我有麻烦建设MySQLdb的,试图让谷歌的AppEngine SDK运行。 我刚刚从雪豹升级到山狮,并且已经安装了最新的XCode(4.4)

我已经下载http://sourceforge.net/projects/mysql-python/

python setup.py build 

我得到在终端下面的输出

running build
running build_py
creating build
creating build/lib.macosx-10.8-intel-2.7
copying _mysql_exceptions.py -> build/lib.macosx-10.8-intel-2.7
creating build/lib.macosx-10.8-intel-2.7/MySQLdb
copying MySQLdb/__init__.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb
copying MySQLdb/converters.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb
copying MySQLdb/connections.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb
copying MySQLdb/cursors.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb
copying MySQLdb/release.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb
copying MySQLdb/times.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb
creating build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
copying MySQLdb/constants/__init__.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
copying MySQLdb/constants/CR.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
copying MySQLdb/constants/FIELD_TYPE.py -> build/lib.macosx-10.8-intel-    2.7/MySQLdb/constants
copying MySQLdb/constants/ER.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
copying MySQLdb/constants/FLAG.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
copying MySQLdb/constants/REFRESH.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
copying MySQLdb/constants/CLIENT.py -> build/lib.macosx-10.8-intel-2.7/MySQLdb/constants
running build_ext
building '_mysql' extension
creating build/temp.macosx-10.8-intel-2.7
clang -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -pipe -Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 -I/usr/local/mysql/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mysql.c -o build/temp.macosx-10.8-intel-2.7/_mysql.o -Os -g -fno-common -fno-strict-aliasing -arch x86_64
unable to execute clang: No such file or directory
error: command 'clang' failed with exit status 1

以下两个目录的存在,我不知道如何与不能够执行铛来解决问题...

/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7
/usr/local/mysql/include

Answer 1:

看来,该系统在抱怨无法找到clang ,它包含在Command Line ToolsXcode 。 你有没有安装该工具呢?

可以通过安装

  • 开放Xcode
  • 偏好( Command + ,
  • Components的下Download选项卡


Answer 2:

如果有人有兴趣的Mac OS X 10.8快速简便的方法:

我假设你有XCode中,它的命令行工具,Python和MySQL的安装。

  1. 安装PIP:

     sudo easy_install pip 
  2. 编辑〜/ .profile文件:

     nano ~/.profile 

    复制并粘贴以下两行

     export PATH=/usr/local/mysql/bin:$PATH export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/ 

    保存并退出。 后记执行以下命令

     source ~/.profile 
  3. 安装MySQLdb的

     sudo pip install MySQL-python 

    为了测试,如果一切工作正常只是尝试

     python -c "import MySQLdb" 

它的工作对我来说就像魅力。 我希望它能帮助。



Answer 3:

看来,是不是你需要做的唯一的事情,我检查有关CC编译器无法识别,而不是引导到正确的文件,谷歌上搜索我发现我需要建设前改变一些文件发现,不会停在那里,现在它认识到不充电的DYDL图书馆......它已经真的很难找到一个真正的答案只是开始使用Python。



Answer 4:

我终于找到了在自述编辑site.cfg,把mysql_config的位置在那里说。



文章来源: How to install MySQLdb on Mountain Lion