Ubuntu 21.10にFortranをインストールする方法

環境情報
# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=21.10
DISTRIB_CODENAME=impish
DISTRIB_DESCRIPTION="Ubuntu 21.10″

インストールの方法
1.リポジトリを追加します
# sudo add-apt-repository ppa:ubuntu-toolchain-r/test

2.パッケージのアップデートを行います
# sudo apt update

3.Fortranインストール
# sudo apt install gfortran-9

gfortran-9 (9.4.0-3ubuntu1) を設定しています …
man-db (2.9.4-2) のトリガを処理しています …
libc-bin (2.34-0ubuntu3) のトリガを処理しています …

4.バージョンを確認します

# 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.

5.テストプログラムを作成
# vi test.f90
以下の内容を編集します

PROGRAM HELLO
PRINT *, 'HELLO, WORLD!'
END PROGRAM HELLO

ファイルをコンパイルします
gfortran-9 -o test test.f90

ファイルを実行します
# ./test
HELLO, WORLD!

Ubuntu 21.10

Posted by arkgame