Windows に Rust をインストールする

Rust

Windows に Rust をインストールする手順を紹介します。

rustup をインストール

  1. 公式サイト から rustup-init.exe をダウンロードします
  2. 特に問題が無ければ 1) Proceed with installation (default) でインストールを実行します
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation

インストール済みの Rust をアップデートする

過去に一度インストール済みの場合や、新しいバージョンにバージョンアップしたい場合には、以下のコマンドを実行することでインストール済みの Rust のバージョンを更新することができます。

rustup update

rustup 自体をアップデートする

Rust のバージョンアップを実行する rustup 自体をアップデートするには、以下のコマンドを実行します。

rustup self update
rustup -V

参考資料