Ubuntu21.10 Fortranをインストールする

Ubuntu21.10 Fortranをインストールする

Ubuntu21.10に、プログラミング言語である「Fortran」をインストールするまでの手順を記述してます。

環境

  • OS Ubuntu21.10

事前準備

まずはリポジトリを追加します。

sudo add-apt-repository ppa:ubuntu-toolchain-r/test

アップデートしておきます。

sudo apt update

Fortranインストール

インストールします。

sudo apt install gfortran-9

バージョンを確認します。

gfortran-9 --version

<出力結果>
GNU Fortran (Ubuntu 9.4.0-3ubuntu1) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Hello World

「Hello World」してみます。

nano hello.f90

<編集>
 PROGRAM HELLO
 PRINT *, 'HELLO, WORLD!'
 END PROGRAM HELLO

コンパイルします。

gfortran-9 -o hello hello.f90

実行します。

./hello

<出力結果>
HELLO, WORLD!