安装枕头的麻烦:为什么我会收到错误?

时间:2014-04-06 22:46:51

标签: python macos pip pillow

我正试图通过pip安装枕头(即sudo pip install pillow),但没有取得多大成功。

谁能告诉我这是什么问题?
以下是我收到的错误:

clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]

clang: note: this will be a hard error (cannot be downgraded to a warning) in the future

error: command 'clang' failed with exit status 1

----------------------------------------
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/private/tmp/pip_build_root/pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-l7hSHg-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /private/tmp/pip_build_root/pillow

1 个答案:

答案 0 :(得分:0)

尝试

sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install pillow

你会看到很多警告,但它对我有用。

未使用的论据阻止了进一步安装枕头。上面告诉它不要将未使用的参数视为错误。

来源:a/22774631/1142814

编辑:我在此链接您在评论中链接的官方问题,也许这对其他人有帮助:https://github.com/python-imaging/Pillow/issues/527