“‘cc’ failed with exit status 1” error when install python library
Run these two lines in your shell before you build: export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments Those exports tell the compiler to ignore unused arguments rather than complaining about them. The reason seems to be that Python is compiling modules using the options that it was built with, except one of those options no longer works in … Read more