You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/doc/index.md
+27-7Lines changed: 27 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,41 @@
1
1
% Cargo, Rust’s Package Manager
2
2
3
-
#Installing
3
+
### Install Stable Rust and Cargo
4
4
5
-
The easiest way to get Cargo is to get the current stable release of Rust by
5
+
The easiest way to get Cargo is to get the current stable release of [Rust] by
6
6
using the `rustup` script:
7
7
8
8
```shell
9
9
$ curl -sSf https://static.rust-lang.org/rustup.sh | sh
10
10
```
11
11
12
-
This will get you the current stable release of Rust for your platform along
13
-
with the latest Cargo.
12
+
After this, you can use the `rustup` command to also install `beta` or `nightly`
13
+
channels for Rust and Cargo.
14
14
15
-
If you are on Windows, you can directly download the latest 32bit ([Rust](https://static.rust-lang.org/dist/rust-1.0.0-i686-pc-windows-gnu.msi)
16
-
and [Cargo](https://static.rust-lang.org/cargo-dist/cargo-nightly-i686-pc-windows-gnu.tar.gz)) or 64bit ([Rust](https://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.msi) and [Cargo](https://static.rust-lang.org/cargo-dist/cargo-nightly-x86_64-pc-windows-gnu.tar.gz)) Rust stable releases or Cargo nightlies.
15
+
### Install Nightly Cargo
17
16
18
-
Alternatively, you can build Cargo from source.
17
+
To install just Cargo, the current recommended installation method is through
18
+
the official nightly builds. Note that Cargo will also require that [Rust] is
0 commit comments