コンテンツにスキップ

UbuntuにRustをインストール

インストール

https://doc.rust-lang.org/book/ch01-01-installation.html

Terminal window
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
. "$HOME/.cargo/env"

特に理由がなければ、1を選択します。

Terminal window
1) Proceed with standard installation (default - just press enter)
2) Customize installation
3) Cancel installation
>

実行

main.rsを作成します。

main.rs
fn main() {
println!("Hello, world!");
}

以下のコマンドでmain.rsをコンパイルします。

Terminal window
rustc main.rs

以下のコマンドで実行します。

Terminal window
./main

アップデート

Terminal window
rustup update

アンインストール

Terminal window
rustup self uninstall