Terkinas
Terkinas

Reputation: 91

Octave on MacOS and how to install a package?

I'm completely lost, I installed brew on my mac and installed octave with brew, but when I try to install package inside octave-gui prompt 'pkg install package_name' im gettin' ar error.

error: the following dependencies were unsatisfied:
   symbolic needs octave >= 4.2.0

Mine version is 4.0.3 and it is the latest octave available on MacOS, any suggestions?

Upvotes: 1

Views: 950

Answers (1)

Uladzislau Kaminski
Uladzislau Kaminski

Reputation: 2255

You should start with updating homebrew itself:

brew update

After that you will be able to update octave:

brew upgrade octave

Upvotes: 1

Related Questions