Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/ch01-01-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ ignore -->.
The rest of this book uses commands that work in both _cmd.exe_ and PowerShell.
If there are specific differences, we’ll explain which to use.

### Installing `rustup` on Windows using `winget`
Installing MSVC Pre-Requisite
```
winget install Microsoft.VisualStudio.2022.Community --silent --override "--wait --quiet --add ProductLang En-us --add Microsoft.VisualStudio.Workload.NativeDesktop --includeRecommended"
```
Installing `rustup`
```
$ winget install -e --id Rustlang.Rustup
```

### Troubleshooting

To check whether you have Rust installed correctly, open a shell and enter this
Expand Down
Loading