Rust のインストール方法を説明しています。
Mac の場合はターミナルで次のようにコマンドします。
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 次のように表示されたら、最後の > の次に 1 と入力してエンターキーを押します。
these changes will be reverted.
Current installation options:
default host triple: aarch64-apple-darwin
default toolchain: stable (default)
profile: default
modify PATH variable: yes
1) Proceed with standard installation (default - just press enter)
2) Customize installation
3) Cancel installation
>
Mac の場合は上記で Rust のインストールは終わっています。しかし Rust のプロジェクトを作ったり、
ソースコードをビルドするために使う cargo というものは使えない状態になっています。
cargo を使える状態にするには、Homebrew か Command Line Tools をインストールします。
Homebrew のインストールはターミナルで次のようにコマンドします。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Homebrew のインストールの途中、Command Line Tools のインストールのところで、インストール作業が止まります。
「システム設定」アイコンに 1 という赤丸がつきます。「システム設定」を開いて、Command Line Tools
のアップデートをインストールします。
Command Line Tools のアップデートが終了すると、ターミナルでの Homebrew のインストールが
自動的に再開されます。
Linux の場合は次のコードをターミナルで実行します。
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 場合によっては、curl をインストールしますか?という案内が出るかもしれません。指示通りインストールしてください。
# curl でのインストールが終われば次のように表示されます。
these changes will be reverted.
Current installation options:
default host triple: aarch64-unknown-linux-gnu
default toolchain: stable (default)
profile: default
modify PATH variable: yes
1) Proceed with standard installation (default - just press enter)
2) Customize installation
3) Cancel installation
>
# 最後の > の次に 1 と入力してエンターキーを押してください。
# 次に、cargo というものがインストールされているか確認します。インストールされていなければ、ターミナルの指示に従ってインストールします。
cargo --version
Windows への Rust のインストールは、インストーラーが必要です。 インストーラーは次のサイトからダウンロードできます。
rustup.rs - The Rust toolchain installer
上記のサイトから rustup-init.exe をダウンロードします。
available.
These components can be acquired through a Visual Studio installer.
1) Quick install via the Visual Studio Community installer
(free for individuals, academic uses, and open source).
2) Manually install the prerequisites
(for enterprise and advanced users).
3) Don't install the prerequisites
(if you're targeting the GNU ABI).
>
info: downloading Visual Studio installer
info: running the Visual Studio install
info: rustup will continue once Visual Studio installation is complete
these changes will be reverted.
Current installation options:
default host triple: x86_64-pc-windows-msvc
default toolchain: stable (default)
profile: default
modify PATH variable: yes
1) Proceed with standard installation (default - just press enter)
2) Customize installation
3) Cancel installation
>
Rust is installed now. Great!
To get started you may need to restart your current shell.
This would reload its PATH environment variable to include
Cargo's bin directory (%USERPROFILE%\.cargo\bin).
Press the Enter key to continue.
任意の場所で次のようにコマンドして Rust のプロジェクトを作って実行します。
cargo new app
# Linux の場合は、cargo をインストールしますか?という案内が出ると思います。指示通りインストールしてください。
cd app
cargo run
Hello, world!
app プロジェクトの src ディレクトリには、次のような main.rs が記述されています。
fn main() {
println!("Hello, world!");
}
# Rust のアンインストール
rustup self uninstall