- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到一个错误 clang: error: unknown argument: '-fabi-version=2'当我尝试使用 pip 安装 mysql-python 时。
MacBook-Pro-de-Haruan:MySQL-python-1.2.5 haruan$ sudo -E pip install MySQL-python
The directory '/Users/haruan/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/Users/haruan/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting MySQL-python
Downloading MySQL-python-1.2.5.zip (108kB)
100% |████████████████████████████████| 110kB 311kB/s
Installing collected packages: MySQL-python
Running setup.py install for MySQL-python
Complete output from command /usr/local/opt/python/bin/python2.7 -c "import setuptools, tokenize;__file__='/private/var/folders/sh/gl953xl12p3fl1k0lkw10_k00000gn/T/pip-build-ZBmISy/MySQL-python/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/sh/gl953xl12p3fl1k0lkw10_k00000gn/T/pip-5RkJ0a-record/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build/lib.macosx-10.10-x86_64-2.7
copying _mysql_exceptions.py -> build/lib.macosx-10.10-x86_64-2.7
creating build/lib.macosx-10.10-x86_64-2.7/MySQLdb
copying MySQLdb/__init__.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb
copying MySQLdb/converters.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb
copying MySQLdb/connections.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb
copying MySQLdb/cursors.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb
copying MySQLdb/release.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb
copying MySQLdb/times.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb
creating build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/__init__.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/CR.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/FIELD_TYPE.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/ER.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/FLAG.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/REFRESH.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/CLIENT.py -> build/lib.macosx-10.10-x86_64-2.7/MySQLdb/constants
running build_ext
building '_mysql' extension
creating build/temp.macosx-10.10-x86_64-2.7
clang -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Qunused-arguments -Qunused-arguments -Dversion_info=(1,2,5,'final',1) -D__version__=1.2.5 -I/Applications/XAMPP/xamppfiles/include -I/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mysql.c -o build/temp.macosx-10.10-x86_64-2.7/_mysql.o -arch x86_64 -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing
clang: error: unknown argument: '-fabi-version=2'
error: command 'clang' failed with exit status 1
----------------------------------------
Command "/usr/local/opt/python/bin/python2.7 -c "import setuptools, tokenize;__file__='/private/var/folders/sh/gl953xl12p3fl1k0lkw10_k00000gn/T/pip-build-ZBmISy/MySQL-python/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/sh/gl953xl12p3fl1k0lkw10_k00000gn/T/pip-5RkJ0a-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/var/folders/sh/gl953xl12p3fl1k0lkw10_k00000gn/T/pip-build-ZBmISy/MySQL-python
我已经用过:
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
export ARCHFLAGS='-Wno-error=unused-command-line-argument-hard-error-in-future'
和
sudo -E ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future easy_install mysql-python
sudo -E ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip mysql-python
问题仍然存在。
我的 Xcode 是版本 6.4 (6E35b)我正在使用 Mac OS X Yosemite
最佳答案
如果其他人遇到此问题并且出于某种原因不想通过更改为不同的 MySQL 安装来解决它,则有一个相对简单的解决方法。我在尝试针对 Bitnami MAMP 堆栈 5.5 版中包含的 MySQL 包编译 mysqlclient 时遇到了这个问题。您只需要调整安装,这样有问题的参数就不会传递给编译器,如下所示:
extra_compile_args
变量初始化后(当前版本第 58-59 行),添加以下代码行:extra_compile_args.pop(extra_compile_args.index('-fabi-version =2'))
python setup.py install
为我工作。
关于python - 尝试在 Mac OS X Yosemite 上安装 MySQL-python 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31865818/
在 Yosemite 中启用深色模式时,必须更改状态栏应用程序图标。如何检测深色模式是否开启?有同样的通知吗? 显示另一张图像或更改现有图像的 alpha 值是否更好?需要了解哪种方法更好? 最佳答案
我刚刚更新到优胜美地,但我不断收到来自 drush 的错误消息。 dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.53.dy
设置类似于 this post 的本地开发环境一切正常,但最近我离线时无法访问我的本地开发域。当我连接到互联网时,它工作正常。我想知道优胜美地中解析器的使用方式是否有所改变。如果我离线,似乎解析器规则
自安装优胜美地以来,我不断收到错误 SSL:CA 证书设置,但证书验证已禁用。它出现在终端中的每个 https url 中。 找不到如何解决这个问题,有什么建议吗? 谢谢 坦率 最佳答案 对于来到这里
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我的电脑里有很多excel文件,它们的图标都是普通纸,像这样: 我希望所有图标都是 .numbers 图标。有谁知道怎么做? 最佳答案 这是你可以做的: 打开 Finder 窗口并导航到/Applic
有很多人遇到类似的问题,过去我在其他计算机上曾经是其中之一,而且那里的解决方案似乎都不起作用-与其他遇到类似问题的人相比,我似乎也有不同的错误: Building native extensions.
我今天刚升级到优胜美地。我已经很久没有 mac 了。但是随着更新,我的本地主机不起作用。 Chrome 返回此网页不可用。我试过了 sudo apachectl start 尝试取回它,但没有成功。我
在升级到 Yosemite 之前,我之前已经在 mac 上安装了 Cloud Code 工具。现在使用以下命令安装时 curl -s https://www.parse.com/downloads/c
有什么方法可以删除我的 Cocoa 应用程序中的 Mac OS Yosemite 透明度吗?在 NSWindow 或 NSToolbar 中没有找到任何相关设置。 最佳答案 NSWindow 采用 N
我正在尝试使用命令行打开禁用安全性的 google chrome mac open -a Google\ Chrome --args --disable-web-security 但是,它不断打开并行
在尝试启动并运行我的新 Yosemite 机器时,我在安装 HomeBrew 和 MacPorts 时发现此错误。 Library not loaded: /usr/local/lib/libcurl
我刚试过这个,但我收到了这个错误信息。关于如何修复它的任何想法?我使用的是 R 版本 3.1.1,RNetLogo_1.0-1,平台是 x86_64-apple-darwin13.1.0(64 位),
我正在尝试签署内核扩展文件“abc.kext”。我有一个启用了 kext 的证书并尝试使用以下方式签署我的“abc.kext”: codesign --sign "Developer ID Appli
在 Yosemite 中修改 PATH 等环境变量的正确方法是什么? 这是这个问题Setting environment variables in OS X?但特别适用于优胜美地,因为它不再有效。 最
我们可以使用 JavaScript 将点击事件发送到 Cocoa 应用程序中 Web View 内的按钮吗? 我尝试使用实用程序(Yosemite)下的脚本编辑器来记录,但不幸的是无法记录 WebVi
我已经更新到 OS X Yosemite。当运行任何与远程仓库有关的 git 命令(pull、fetch 等)时,终端会不断询问我的 github 用户名和密码(远程在 github 上)。如果我从适
实际上它可以正常登录,当我使用 sudo 执行某些操作时也是如此。但是当我尝试更改首选项并弹出带有登录名/密码的窗口时,它说密码不正确。 所以我实际上无法安装任何东西。 最佳答案 我终于解决了这个问题
我想在系统首选项中的桌面和屏幕保护程序设置的复选框之后设置启动时间。但我想从我的命令石灰中做到这一点。更改 com.apple.screensaver.plist 的值对我没有帮助。感谢您的帮助。 最
我安装了 Yosemite,现在当我使用 MAMP 时收到这个 fatal error : Fatal error: Uncaught exception 'PDOException' with me
我是一名优秀的程序员,十分优秀!