Last active
January 6, 2024 07:25
-
-
Save goldsmith/7262122 to your computer and use it in GitHub Desktop.
Revisions
-
goldsmith revised this gist
Nov 8, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ 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! -
goldsmith revised this gist
Nov 2, 2013 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,6 +13,9 @@ 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 -
goldsmith revised this gist
Nov 2, 2013 . 1 changed file with 13 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,20 @@ # 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 # finally pip install -e git+https://github.com/scipy/scipy#egg=scipy-dev # Let me know if this works for you! [email protected] -
goldsmith created this gist
Nov 1, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ 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!