@@ -16,14 +16,14 @@ If you're on Linux or a Mac, all you need to do is open a terminal and type
16
16
this:
17
17
18
18
``` bash
19
- $ curl -sSf https://static.rust-lang.org/ rustup.sh | sh
19
+ $ curl https://sh. rustup.rs -sSf | sh
20
20
```
21
21
22
22
This will download a script and start the installation. You may be prompted for
23
23
your password. If it all goes well, you’ll see this appear:
24
24
25
25
``` text
26
- Rust is ready to roll.
26
+ Rust is installed now. Great!
27
27
```
28
28
29
29
## Installing on Windows
@@ -38,7 +38,7 @@ Uninstalling Rust is as easy as installing it. On Linux or Mac, just run
38
38
the uninstall script:
39
39
40
40
``` bash
41
- $ sudo /usr/local/lib/rustlib/ uninstall.sh
41
+ $ rustup self uninstall
42
42
```
43
43
44
44
If you used the Windows installer, you can re-run the ` .msi ` and it will give
@@ -64,7 +64,7 @@ If not, there are a number of places where you can get help. The easiest is
64
64
[ the #rust IRC channel on irc.mozilla.org] [ irc ] , which you can access through
65
65
[ Mibbit] [ mibbit ] . Click that link, and you'll be chatting with other Rustaceans
66
66
(a silly nickname we call ourselves) who can help you out. Other great resources
67
- include [ the user’s forum] [ users ] , and [ Stack Overflow] [ stackoverflow ] .
67
+ include [ the user’s forum] [ users ] and [ Stack Overflow] [ stackoverflow ] .
68
68
69
69
[ irc ] : irc://irc.mozilla.org/#rust
70
70
[ mibbit ] : http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust
@@ -73,7 +73,7 @@ include [the user’s forum][users], and [Stack Overflow][stackoverflow].
73
73
74
74
## Local documentation
75
75
76
- This installer also installs a copy of the documentation locally, so you can
77
- read it offline. On UNIX systems, ` /usr/local/share/ doc/rust ` is the location.
78
- On Windows, it's in a ` share/doc ` directory, inside the directory to which Rust
79
- was installed.
76
+ The installer also includes a copy of the documentation locally, so you can
77
+ read it offline. On Linux or Mac, run ` rustup doc` to open the local
78
+ documentation in your browser. On Windows, the documentation is in a
79
+ ` share/doc ` directory inside the directory where Rust was installed.
0 commit comments