-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrust_notes.txt
39 lines (24 loc) · 948 Bytes
/
rust_notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Rustup metadata and toolchains will be installed into the Rustup
home directory, located at:
/home/raphs/.rustup
This can be modified with the RUSTUP_HOME environment variable.
The Cargo home directory is located at:
/home/raphs/.cargo
This can be modified with the CARGO_HOME environment variable.
The cargo, rustc, rustup and other commands will be added to
Cargo's bin directory, located at:
/home/raphs/.cargo/bin
This path will then be added to your PATH environment variable by
modifying the profile files located at:
/home/raphs/.profile
/home/raphs/.bashrc
You can uninstall at any time with rustup self uninstall and
these changes will be reverted.
Current installation options:
default host triple: aarch64-unknown-linux-gnu
default toolchain: stable (default)
profile: default
modify PATH variable: yes
($HOME/.cargo/bin).
To configure your current shell, run:
source "$HOME/.cargo/env"