20 lines
261 B
Markdown
20 lines
261 B
Markdown
---
|
|
tags:
|
|
- IT/Development/Rust
|
|
---
|
|
|
|
|
|
## Install rustup
|
|
```
|
|
curl https://sh.rustup.rs -sSf | sh
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
```
|
|
|
|
## Uninstall
|
|
```
|
|
rustup self uninstall
|
|
```
|
|
|
|
## Links
|
|
- https://www.rust-lang.org/tools/install
|