🍦
ubuntuでRustを使う
Rustをubuntu20.04にインストールしてみました
メモリ管理、高速動作、安全と噂のRustを使ってみたい
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
途中で以下の質問がきます。1を入力してEnterを押しました
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
以下のようになっていればOKです
Rust is installed now. Great!
To get started you may need to restart your current shell.
This would reload your PATH environment variable to include
Cargo's bin directory ($HOME/.cargo/bin).
To configure your current shell, run:
source "$HOME/.cargo/env"
Cargoのバージョン確認をしてみましょう
source "$HOME/.cargo/env"
cargo --version
>>cargo 1.73.0 (9c4383fb5 2023-08-26)
終了です。
Discussion