November 2017
Intermediate to advanced
264 pages
5h 45m
English
You can install the Rust toolchain on every platform that Rust supports by using the rustup installer tool, which you can find at http://www.rust-lang.org/install.html.
On Windows, double-click on the rustup-init.exe file to install the Rust binaries and dependencies. Rust's installation directory (which by default is C:\Users\username\.cargo\bin) is automatically added to the search path for executables. Additionally you may need the C++ build tools for Visual Studio 2013 or later, which you can download from http://landinghub.visualstudio.com/visual-cpp-build-tools.
On Linux and OS X, run the following command in your shell:
curl https://sh.rustup.rs -sSf | sh
This installs the Rust toolchain in /home/username/.cargo/bin ...
Read now
Unlock full access