Ubuntu21.10 Fortranをインストールする
- 作成日 2021.12.08
- 更新日 2021.12.13
- Fortran ubuntu
- Ubuntu21.10
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!
-
前の記事
Linux 隠しファイルを作成する 2021.12.08
-
次の記事
PostgreSQL エラー「Killing process xxxx(postmaster) with signal SIGKILL.」がでて起動しない場合の対処法 2021.12.08
コメントを書く