CentOS Stream 9にプログラム言語Rustをインストールする
環境
CentOS Stream release 9
gcc 11.3.1
操作方法
1.gccをインストールします
# sudo dnf install -y gcc
gccバージョンを確認します
# gcc --version gcc (GCC) 11.3.1 20220421 (Red Hat 11.3.1-2) Copyright (C) 2021 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.
2.Rustをインストールします
# sudo dnf -y install rust cargo
Rustバージョンを確認します
# rustc --version rustc 1.62.1 (Red Hat 1.62.1-1.el9)
3.動作確認
# nano test.rs
以下のコードを記述します
fn main() { println!("Hello, world, study rust language"); }
ファイルをコンパイルして実行します。
# rustc test.rs # ./test Hello, world, study rust language