# Downloading and Installing Rust

### Instructions

To download and install Rust it is pretty simple. Just run the following `curl` command and pipe it into `bash`.

```bash
curl https://sh.rustup.rs | bash
```

This will install `rustup` which is a tool that helps you install Rust across all platforms.

##### Update and uninstall

Run the following command to update rust to a new version run the following command:

```javascript
rustup update
```

To uninstall rust run the following command:

```javascript
rustup self uninstall
```