RUST 01: Getting Started and Installing RUST

Описание к видео RUST 01: Getting Started and Installing RUST

We'll install the RUST programming language on Linux, Windows and the Mac here are create our first RUST programming project.

RUST is a relatively new programming language (first appeared in 2015) that claims to be highly memory, storage and performance efficient, but we'll take a look if that is really true in this series of videos. It doesn't matter though, we'll learn how to program using the RUST programming language!

RUST 02 (Next): Installing on Windows without Visual Studio:    • RUST 02: Installing RUST on Windows W...  

Install Commands
-----------------------------
Linux (Debian/Ubuntu/Mint) install commands from Terminal:
- sudo apt update
- sudo apt upgrade
- sudo apt install build-essential
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- Close terminal and re-open to get the correct environment variable settings
- Visual Studio Code Download link: https://code.visualstudio.com/download

Linux (Red Hat/CentOS/Fedora) install commands from Terminal:
- sudo dnf update
- sudo dnf groupinstall "Development Tools" -y
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- Close terminal and re-open to get the correct environment variable settings
- Visual Studio Code Download link: https://code.visualstudio.com/download

Apple Mac OS install commands from Terminal:
Note: Make sure you have XCode installed first
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- Close terminal and re-open to get the correct environment variable settings
- Visual Studio Code Download link: https://code.visualstudio.com/download

Windows
- Visual Studio 2022 Download: https://visualstudio.microsoft.com/do...
- RUST download link: https://www.rust-lang.org/tools/install

Build Commands
----------------------------
Compile using the rust compiler: rustc filename.rs
Create a RUST project using Cargo: cargo new projectname
Compile a RUST project using Cargo: cargo build

00:00 Introduction
01:19 Installation on Linux
06:44 Installing Visual Studio Code
13:18 Installing on Windows
25:29 Installing on Apple Mac
31:23 Summary

Комментарии

Информация по комментариям в разработке