Ubuntu 22.04 LTSにプログラム言語Rustをインストールする
環境
Ubuntu 22.04 LTS
1.gccをインストールします
# sudo apt install -y gcc
2.curlコマンドでRustをインストールします
# curl https://sh.rustup.rs -sSf | sh Current installation options: default host triple: x86_64-unknown-linux-gnu default toolchain: stable (default) profile: default modify PATH variable: yes 1) Proceed with installation (default) 2) Customize installation 3) Cancel installation >1 #「1」を選択します
3.環境パスを設定します
# source $HOME/.cargo/env
バージョンを確認します
# rustc --version rustc 1.60.0 (7737e0b5c 2022-04-04)
4.動作確認
# nano hello.rs
以下の内容を編集します
fn main() { println!("Hello, world study skill"); }
ファイルをコンパイルします
# rustc hello.rs
ファイルを実行します
# ./hello
Hello, world study skill