Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.29 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.29 KB

episode-000

Where we install Rust

Setup

The following needs to be prepared:

Script

In this screen cast we are going to install Rust onto our computer. Rust runs on various platforms, and there are installers for all the popular ones.

The install button does a pretty good job of figuring out your environment, so go ahead and download the installer.

If the download is finished run the installer. This will guide you through the process of setting up your system for Rust. You need to agree with the license before you can install, decide who is going to be able to use Rust on your system. For ease of use click through the installer and provide your administrator password.

After the installer has finished, open a terminal and verify that rust is installed correctly by typing the following command in your terminal.

rustc --version

You will be greated by a version number, a commit hash and a commit date

rustc 1.2.0 (082e47636 2015-08-03)

And there you have it, Rust is installed on your system.