HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

rustup-init.sh — Script to install `rustup` and the Rust toolchain. More information: <https://forge.rust-lang.org/in

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandandinstallrustup-init.shclirustupscript

Problem

How to use the rustup-init.sh command: Script to install rustup and the Rust toolchain. More information: <https://forge.rust-lang.org/infra/other-installation-methods.html#rustup>.

Solution

rustup-init.sh — Script to install rustup and the Rust toolchain. More information: <https://forge.rust-lang.org/infra/other-installation-methods.html#rustup>.

Download and run rustup-init to install rustup and the default Rust toolchain:
curl https://sh.rustup.rs {{[-sSf|--silent --show-error --fail]}} | sh -s


Download and run rustup-init and pass arguments to it:
curl https://sh.rustup.rs {{[-sSf|--silent --show-error --fail]}} | sh -s -- {{arguments}}


Run rustup-init and specify additional components or targets to install:
rustup-init.sh --target {{target}} --component {{component}}


Run rustup-init and specify the default toolchain to install:
rustup-init.sh --default-toolchain {{toolchain}}


Run rustup-init and do not install any toolchain:
rustup-init.sh --default-toolchain {{none}}


Run rustup-init and specify an installation profile:
rustup-init.sh --profile {{minimal|default|complete}}


Run rustup-init without asking for confirmation:
rustup-init.sh -y

Code Snippets

Download and run `rustup-init` to install `rustup` and the default Rust toolchain

curl https://sh.rustup.rs {{[-sSf|--silent --show-error --fail]}} | sh -s

Download and run `rustup-init` and pass arguments to it

curl https://sh.rustup.rs {{[-sSf|--silent --show-error --fail]}} | sh -s -- {{arguments}}

Run `rustup-init` and specify additional components or targets to install

rustup-init.sh --target {{target}} --component {{component}}

Run `rustup-init` and specify the default toolchain to install

rustup-init.sh --default-toolchain {{toolchain}}

Run `rustup-init` and do not install any toolchain

rustup-init.sh --default-toolchain {{none}}

Context

tldr-pages: common/rustup-init.sh

Revisions (0)

No revisions yet.