14 ## Installation and usage |
14 ## Installation and usage |
15 |
15 |
16 ### Installing dependencies |
16 ### Installing dependencies |
17 |
17 |
18 Most dependencies are managed by the Cargo build system of [Rust]. You will |
18 Most dependencies are managed by the Cargo build system of [Rust]. You will |
19 only need to install the “nightly” Rust compiler and the |
19 only need to install the “stable” Rust compiler and the |
20 [GNU Scientific Library] manually. At the time of writing this README, |
20 [GNU Scientific Library] manually. At the time of writing this README, |
21 [alg_tools] also needs to be downloaded separately. |
21 [alg_tools] also needs to be downloaded separately. |
22 |
22 |
23 1. Install the [Rust] infrastructure (including Cargo) with [rustup]. |
23 1. Install the [Rust] infrastructure (including Cargo) with [rustup]. |
24 2. Install a “nightly” release of the Rust compiler. With rustup, installed in |
24 2. Install a “stable” release of the Rust compiler. With rustup, installed in |
25 the previous step, this can be done with |
25 the previous step, this can be done with |
26 ```console |
26 ```console |
27 rustup toolchain install nightly |
27 rustup toolchain install stable |
28 ``` |
28 ``` |
29 3. Download [alg_tools] and unpack it under the same directory as this |
29 3. Download [alg_tools] and unpack it under the same directory as this |
30 package. |
30 package. |
31 |
31 |
32 [rustup]: https://rustup.rs |
32 [rustup]: https://rustup.rs |