python - Trouble Installing Pillow: Why Am I Receiving Errors? -
i'm attempting install pillow via pip (i.e. sudo pip install pillow
) without success.
can tell me problem is?
here errors receive:
clang: error: unknown argument: '-mno-fused-madd' [-wunused-command-line-argument-hard-error-in-future] clang: note: hard error (cannot downgraded warning) in future error: command 'clang' failed 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 error code 1 in /private/tmp/pip_build_root/pillow
try with
sudo archflags=-wno-error=unused-command-line-argument-hard-error-in-future pip install pillow
you see lot of warnings worked me.
the unused arguments preventing further install of pillow. above tells not treat unused argument error.
source: a/22774631/1142814
edit: link here official issue linked in comment, maybe can helpful else: https://github.com/python-imaging/pillow/issues/527
Comments
Post a Comment