2

如果我使用该命令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 'cc' failed with exit status 1

----------------------------------------

Cleaning up...
Removing temporary dir /private/tmp/pip_build_root...
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-VaD2jT-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /private/tmp/pip_build_root/Pillow
Exception information:
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 122, in main
status = self.run(options, args)
  File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 283, in run
requirement_set.install(install_options, global_options, root=options.root_path)
  File "/Library/Python/2.7/site-packages/pip/req.py", line 1435, in install
requirement.install(install_options, global_options, *args, **kwargs)
  File "/Library/Python/2.7/site-packages/pip/req.py", line 706, in install
cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
  File "/Library/Python/2.7/site-packages/pip/util.py", line 697, in call_subprocess
% (command_desc, proc.returncode,`enter code here` cwd))
InstallationError: 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-VaD2jT-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /private/tmp/pip_build_root/Pillow

我安装了 xcode 命令行工具。真的卡在这个了。

----更新---- 运行brew doctor并清除所有错误。已成功安装所有 Pillow 先决条件。

这是填充 pip.log 文件:http ://pastebin.com/08XD9JjM

4

3 回答 3

5

我遇到了同样的问题。这似乎是由 Xcode 5.1 引起的问题。看看这个问题的答案:

OS X Pillow 安装错误

通过使用该答案中的命令解决了我的问题:

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

它会引发很多警告。但一切都很好。

于 2014-04-04T04:58:40.797 回答
0

找到了解决方案:

brew install python

运行后brew doctor它显示由于新安装存在未链接的小桶。为了纠正这个我不得不跑brew link --overwrite python

然后我可以sudo pip install Pillow毫无问题地运行。

于 2014-03-21T20:49:33.157 回答
0

编辑:看起来这是 Mac OS X 的一个已知问题,与 XCode 5.1 或 Mavericks 10.9 有关:https ://github.com/python-imaging/Pillow/issues/527

这似乎是解决问题的最非侵入性方法:

我遇到了同样的问题,发现设置“CFLAGS=-Qunused-arguments”和“CPPFLAGS=-Qunused-arguments”解决了我的问题(我不想进行全新安装来解决它)。此处描述了此修复:Ansible 安装 -clang:错误:未知参数:'-mno-fused-madd'


原答案:

看起来您正在尝试在 Mac OS X 上安装 Pillow。您是否按照Pillow 的 Mac OS X 安装说明安装了所有先决条件?

pip 应该已经写了更多关于编译错误的输出,如果不是到控制台,那么到它的日志文件。您应该查看日志文件并在您的问题中发布相关的编译错误消息,以帮助确定问题。

于 2014-03-21T19:02:00.040 回答