Estoy intentando instalar el paquete scipy (Scientific Python, incluido matplotlib) usando homebrew, y noté que falla cuando se necesita instalar una dependencia (gcc versión 4.9.0).
Intenté instalarlo en varias versiones de OSX, e incluso un método manual, pero el error siempre se produce en la parte "make bootstrap".
Primer método:
brew tap Homebrew/versions brew install gcc49
Resultar
make[4]: *** [all-multi] Error 2 make[3]: *** [all-recursive] Error 1 make[2]: *** [all-stage1-target-libsanitizer] Error 2 make[1]: *** [stage-bubble] Error 2 make: *** [bootstrap] Error 2
Segundo método:
wget ftp://ftp.gnu.org/gnu/gcc/gcc-4.9.1/gcc-4.9.1.tar.bz2 gunzip gcc*.bz2 tar -xf gcc*.tar ./configure --prefix=/usr/gcc-4.9.1 --with-gmp=/usr/local/Cellar/gmp/6.0.0a --with-mpr=/usr/local/Cellar/mpfr/3.1.2-p8 --with-mpc=/usr/local/Cellar/mpc/0.26 --program-suffix=4.9.1 --enable-languages=c,c++,fortran --with-system-zlib --enable-stage1-checking --enable-plugin --enable-lto --disable-multilib
Resultado: Salida similar a la primera al final de la salida.
¿Alguien sabe cómo instalar esto correctamente o necesito usar xcode? ¿Funcionará incluso con el paquete scipy instalado a través de homebrew?
---------- ACTUALIZACIÓN -----------
Sugerencias intentadas. Ese es el "brew install gcc" y "brew install scipy"
Falla al instalar gcc de cualquier manera, después de hacer esos comandos obtengo lo siguiente.
==> Installing dependencies for scipy: gcc, numpy ==> Installing scipy dependency: gcc ==> Downloading http://ftpmirror.gnu.org/gcc/gcc-4.9.1/gcc-4.9.1.tar.bz2 Already downloaded: /Library/Caches/Homebrew/gcc-4.9.1.tar.bz2 ==> ../configure --build=x86_64-apple-darwin14.0.0 --prefix=/usr/local/Cellar/gcc/4.9.1 --enable-languages=c,c++,objc,obj-c++,fortran - ==> make bootstrap mkdir common mkdir common/.deps config.status: executing default commands make[1]: *** [stage2-bubble] Error 2 make: *** [bootstrap] Error 2 READ THIS: https://github.com/Homebrew/homebrew/wiki/troubleshooting These open issues may also help: gcc: compatibility 10.10 (https://github.com/Homebrew/homebrew/pull/31466) gcc 4.8.3 bottle has invalid omp.h header (https://github.com/Homebrew/homebrew/issues/29670) MacOS.(gcc|clang|llvm)_version can return nil (https://github.com/Homebrew/homebrew/issues/18781)