J'ai essayé d'installer oreiller, une bibliothèque d'images Python, sur mon Mac, mais cela n'a pas fonctionné avec l'erreur suivante.
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
Lorsque je cherche sur Google, il semble que de nombreuses personnes obtiennent la même erreur dans OSX 10.9.
Pour le moment, j'ai regardé ici et l'ai résolu, alors j'ai pris une note immédiatement. http://stackoverflow.com/questions/22334776/installing-pillow-pil-on-mavericks
Commande tapée ↓
sudo bash
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
pip install pillow
Je ne suis pas sûr, mais cela a fonctionné après avoir passé environ deux passes.
Recommended Posts