2018年10月30日火曜日

[macOS] macOS High Sierra にOctaveをインストール

macOS High SierraにOctaveをインストールした際のメモです.
インストールは,Homebrewを使用して行います.

先ずは,gnuplotで描画する際に AquatermかXQuartzのどちらを使うか分からないので,両方インストールしておきます.

ターミナルを立ち上げ,以下のようにコマンドを入力していきます.
この例では,Aquatermが既にインストールされていたので,"reinstall"としています.
$ brew cask reinstall aquaterm

インストールされていない場合は,"install"とします.
$ brew cask install aquaterm

すると,以下のようにインストールが実行されます.
==> Tapping caskroom/cask
...
...
🍺  aquaterm was successfully installed!
上記の"..."は,そのような表示となるわけではなく,省略を意味します.

続いて,XQuartzをインストールします.
$ brew cask install xquartz
この場合も,すでにインストールされている場合は,"reinstall"とする.

すると,以下のようにインストールが実行されます.
Updating Homebrew...
...
...
🍺  xquartz was successfully installed!
先の例と同じく,"..."は省略です.

続いて,描画に用いるgnuplotをインストールします(この場合も,既にインストールされていた場合の例( i.e. "reinstall")なので,初めての場合は"install"とします).
$ brew reinstall gnuplot --with-aquaterm --with-x11
==> Reinstalling gnuplot --with-aquaterm --with-x11
...
🍺  /.../.../.../gnuplot/5.2.3: 47 files, 2.7MB, built in 1 minute 22 seconds
("..."は省略です)

そして,Octaveをインストールします.
$ brew install octave

ズラズラと,表示が流れ,インストールが進み,最後に以下のような表示があってインストールは完了します.
🍺  /.../.../.../octave/4.4.0: 2,173 files, 45.4MB

Octaveを立ち上げるには,"octave"と入力します.
$ octave
そして,以下のように立ち上がればインストール成功です.
GNU Octave, version 4.4.0
Copyright (C) 2018 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  For details, type 'warranty'.

Octave was configured for "x86_64-apple-darwin17.5.0".

Additional information about Octave is available at https://www.octave.org.

Please contribute if you find this software useful.
For more information, visit https://www.octave.org/get-involved.html

Read https://www.octave.org/bugs.html to learn how to submit bug reports.
For information about changes from previous versions, type 'news'.

octave:1> exit
(Octaveを終了するには,上記のように"exit"と入力します)

0 件のコメント :

コメントを投稿