Last active
November 7, 2016 23:19
-
-
Save aelesbao/01d6faf284f7330ee194f0e968be7842 to your computer and use it in GitHub Desktop.
Octave installation on Mac OS X
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
#!/bin/sh | |
brew tap homebrew/science | |
brew cask install aquaterm xquartz | |
brew install gnuplot --with-aquaterm --with-x11 | |
brew install octave --with-sndfile --without-qt5 | |
# Now you can use either Aquaterm or X11 as your graphics engine. | |
# Add the following to ~/.octaverc and choose one: | |
# | |
# graphics_toolkit('gnuplot'); | |
# setenv('GNUTERM','x11'); % or setenv('GNUTERM','aqua') for Aquaterm | |
# Obs: you should logout and log back in to XQuartz work. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment