Skip to content

Instantly share code, notes, and snippets.

@eclipselu
Forked from goldsmith/numpy_os_x_10_9.sh
Created November 27, 2013 13:41
Show Gist options
  • Save eclipselu/7675863 to your computer and use it in GitHub Desktop.
Save eclipselu/7675863 to your computer and use it in GitHub Desktop.
# set up flags for Numpy C extentions compiling
export CFLAGS="-arch i386 -arch x86_64"
export FFLAGS="-m32 -m64"
export LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64"
export CC=gcc-4.2
export CXX="g++ -arch i386 -arch x86_64"
pip install numpy
# success!
# now for scipy
easy_install cython
# make sure you have Homebrew
brew install gfortran
# if this is too slow or has an error
# install gfotran from the Mac OS X Lion installer for Intel 64-bit processors
# http://gcc.gnu.org/wiki/GFortranBinaries#MacOS
# finally
pip install -e git+https://github.com/scipy/scipy#egg=scipy-dev
# Let me know if this works for you! jhghank@gmail.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment