From 517952fc0f1ea5ec6b9afe87f0f03a5b4423b955 Mon Sep 17 00:00:00 2001 From: Mehdi Zerouali Date: Fri, 24 May 2019 10:07:30 +1000 Subject: [PATCH] Update instructions to install rustup in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 879f9b8fe..4dd19be7b 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ tests and benchmarks which may be of interest. A few basic steps are needed to get set up: - 1. Install [rustup](https://rustup.rs/). It's a toolchain manager for Rust (Linux | macos | Windows). For installation run the below command in your terminal `$ curl https://sh.rustup.rs -sSf | sh` + 1. Install [rustup](https://rustup.rs/). It's a toolchain manager for Rust (Linux | macOS | Windows). For installation, download the script with `$ curl -f https://sh.rustup.rs > rustup.sh`, review its content (e.g. `$ less ./rustup.sh`) and run the script `$ ./rustup.sh` (you may need to change the permissions to allow execution, i.e. `$ chmod +x rustup.sh`) 2. (Linux & MacOS) To configure your current shell run: `$ source $HOME/.cargo/env` 3. Use the command `rustup show` to get information about the Rust installation. You should see that the active toolchain is the stable version.