[[rustup]]をインストールする方法。
## [[Windows]]
[[Scoop]]を使う。もちろん他の方法もある。
### [[Visual Studio Build Tools]]環境
[[Windows]]だとこちらが推奨のはず。
```bash
scoop install rustup-msvc
```
### [[GNU]]環境
```bash
scoop install rustup
```
## [[macOS]] / [[WSL]]
https://www.rust-lang.org/tools/install
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
## 参考
- [rustupのインストール(と管理)|WindowsでRustの開発環境を構築する\(not on WSL\)/おまけのみ有料](https://zenn.dev/suauiya/books/ef2d2c67c546361e4518/viewer/7ae9e51108e7b197120a)