Created
April 7, 2014 18:43
-
-
Save jbub/10028585 to your computer and use it in GitHub Desktop.
Fix for OS X 10.9 to ignore unused arguments errors in compilers to be able to install python packages using pip.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# compilers flags | |
export CFLAGS=-Qunused-arguments | |
export CPPFLAGS=-Qunused-arguments | |
export ARCHFLAGS=-Wunused-command-line-argument-hard-error-in-future | |
# passing -E options to respect environment variables | |
sudo -E pip install -U lxml numpy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment