Skip to content

Commit

Permalink
docs: Add note on uninstalling to README
Browse files Browse the repository at this point in the history
  • Loading branch information
mokou committed Dec 29, 2020
1 parent 0ef9594 commit 28020d0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,24 @@ cargo uninstall rustlings
rm -r rustlings/ # or on Windows: rmdir /s rustlings
```

## Uninstalling Rustlings

If you want to remove Rustlings from your system, there's two steps. First, you'll need to remove the exercises folder that the install script created
for you:

``` bash
rm -rf rustlings # or your custom folder name, if you chose and or renamed it
```

Second, since Rustlings got installed via `cargo install`, it's only reasonable to assume that you can also remove it using Cargo, and
exactly that is the case. Run `cargo uninstall` to remove the `rustlings` binary:

``` bash
cargo uninstall rustlings
```

Now you should be done!

## Completion

Rustlings isn't done; there are a couple of sections that are very experimental and don't have proper documentation. These include:
Expand Down

0 comments on commit 28020d0

Please sign in to comment.