Rustの最新安定バージョンを、WSL2で動いているUbuntu22.04にインストールします。
デフォルトインストール
ターミナルから以下のコマンドを実行します。
$ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
コマンドを実行すると以下の選択肢が表示されます。1
を入力してください。
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
インストールが成功すると、以下の文字列が表示されます。
Rust is installed now. Great!
インストールが終わったら、以下のコマンドを実行してシェルに設定を反映します。
$ source "$HOME/.cargo/env"
Rustのコマンドが正常にインストールされたかを以下のコマンドで確認します。バージョンが表示されればRustのインストールは成功しています。
$ rustc --version
rustc 1.66.0 (69f9c33d7 2022-12-12)
カスタムインストール
インストールコマンドを実行したあとに表示される選択肢で 2
を選ぶことでカスタムインストールをすることができます。
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
以下の4項目を変更することができます。
Default host triple? [x86_64-unknown-linux-gnu]
Default toolchain? (stable/beta/nightly/none) [stable]
Profile (which tools and data to install)? (minimal/default/complete) [default]
Modify PATH variable? (Y/n)