Cristian Fabricio Rodriguez Romero

Results 2 comments of Cristian Fabricio Rodriguez Romero

For OSx Catalina, I have installed `libopenblasp` with `brew install openblas` and for `libblapack` with `brew install lapack` but this doesn't works for me, I think I should add some...

I added this in my `~/.bash_profile` I'm not sure if it is necessary :thinking: : ```bash export LDFLAGS="-L/usr/local/opt/lapack/lib" export LDFLAGS="$LDFLAGS:-L/usr/local/opt/openblas/lib" export CPPFLAGS="-I/usr/local/opt/lapack/include" export CPPFLAGS="$CPPFLAGS:-I/usr/local/opt/openblas/include" export PKG_CONFIG_PATH="/usr/local/opt/lapack/lib/pkgconfig" export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/openblas/lib/pkgconfig" ``` The...