30 lines
374 B
Markdown
30 lines
374 B
Markdown
---
|
|
tags:
|
|
- IT/Development/Rust
|
|
---
|
|
|
|
## Install rustup
|
|
|
|
### Link
|
|
- https://rust-lang.org/tools/install/
|
|
|
|
### Linux
|
|
```
|
|
curl https://sh.rustup.rs -sSf | sh
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
```
|
|
|
|
### Windows
|
|
- Download and execute rustup installer from [[rust#Link]]
|
|
|
|
## Update
|
|
```
|
|
rustup update
|
|
```
|
|
|
|
## Uninstall
|
|
```
|
|
rustup self uninstall
|
|
```
|
|
|