Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install GNU Octave on Mac with Fink ?

Tags:

macos

octave

fink

I tried to install GNU Octave on my Mac using Fink by this instruction http://wiki.octave.org/Octave_for_MacOS_X

I think I have followed all the instructions but I can't run Octave. How can I check if it is installed correctly? I tried typing 'octave' in the terminal but it says 'command not found'

Or, is there any easy instruction for Octave installation? I've found many install guides but they are all different and assumes some knowledge.

like image 603
user67275 Avatar asked May 08 '13 15:05

user67275


People also ask

How to install GNU Octave on Windows 10?

Follow the below steps to install GNU Octave on Windows: Step 1: Visit the official website using any web browser. Step 2: Click on the Download button. Step 3: Next window open now click on MS Windows. Step 4: Next screen will open now click on the Octave 6.4.0 installer.exe button highlighted on red square.

Is there an octave for Mac OS?

Octave for macOS. GNU Octave is primarily developed on GNU/Linux and other POSIX conformant systems. GNU Octave for macOS is readily available using package managers such as Fink, MacPorts, and Homebrew. An unofficial native macOS "Octave.app" distribution of GNU Octave is also available as either a dmg or Homebrew cask.

How do I start the octave GUI on a Mac?

If you know the installation location, open the Script Editor application and write the following text in the editor window: if you wish to start the Octave GUI by default. If you want to start the Octave command-line interface (CLI), enter instead: With a script open in the Script Editor app on your Mac, choose "File > Export".

How do I install octave in Anaconda?

The Octave developers do not recommend a certain package manager. → Link to Octave package there. Follow the Anaconda installation instructions . conda create --name octave conda activate octave conda install -c conda-forge octave octave --gui → Link to Octave package there. Follow the Homebrew installation instructions .


1 Answers

Incidentally, I have installed Octave GNU today twice on two different machines (both running Lion).

I needed the latest version of Octave (3.6.4), and used Homebrew.

I already had XCode installed, so the rest:

Install Homebrew

Based on the instructions in this page, I ran:

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

Install Octave

Following this guide, I ran:

brew tap homebrew/science
brew update && brew upgrade
brew install gfortran
brew install octave

Install AquaTerm

Notice that you need this before you install gnuplot (or gnuplot won't see aqua as a valid terminal and you may get 'unknown or ambiguous terminal type' error).

Simply downloaded the latest version (1.1.0) dmg from SourceForge.

Install gnuplot

brew install gnuplot
like image 91
Izhaki Avatar answered Sep 20 '22 21:09

Izhaki