How to install Octave on OSX Yosemite
For those who have problems installing Octave on OSX Yosemite, this is a simple guide.
First of all you need HomeBrew
- Open a terminal and install homebrew :
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Update and check if homebrew is working fine.
brew update
brew doctor
-
Install XQuartz which is a X11 substitute for recent OSX distributions XQuartz
-
Install Octave with Homebrew
brew tap homebrew/science
brew update
brew install octave --with-x11
Install fltk for Gnuplot (used by Octave for graph visualization)
brew install gnuplot --with-x11