diff --git a/guide/english/rust/installing-rust/index.md b/guide/english/rust/installing-rust/index.md index 8a401b5cf47..e1abff8903c 100644 --- a/guide/english/rust/installing-rust/index.md +++ b/guide/english/rust/installing-rust/index.md @@ -4,7 +4,7 @@ title: Installing Rust # Installing Rust -Using `rustup` is preferred for Rust installation. `rustup` installs and manages Rust for your system. +Using `rustup` is preferred for Rust installation. `rustup` installs and manages Rust for your system. ## Installing Rust in Windows @@ -20,6 +20,13 @@ curl https://sh.rustup.rs -sSf | sh This will fetch the `rustup` installer and in turn fetch everything you need. +### Mac OS X (Homebrew) + +Mac OS X users can also use [Homebrew](https://brew.sh/) to install rust: +```sh +brew install rust +``` + # Verifying installation Installing `rustup` will install all things relevant to rust, but most relevantly this means installing the compiler and the package manager. To verify that everything is installed, run this command: