In this article, we will explore how to get started with the Rust programming language by installing the Rust compiler on Ubuntu.
Keep in mind that we tested the installation instructions on Ubuntu 20.04 and Debian 11. However, the installation instructions should work on any Debian-based distribution.
Before installing the Rust language, we need to ensure our system packages and repositories are updated.
We can do this with a simple, apt command as follows:
Press Y to accept the installation and updating of the packages to your system.
Once we have our system updated and ready, we can install the Rust compiler. It is good to note several ways to install Rust on your system. The best is to use the Rustup installer script.
Open the terminal and enter the command provided below:
The previous command will download the installer script and execute it. The rustup utility allows you to manage multiple installations of the Rust compiler, including beta and nightly releases. Once you execute the previous command, get an output as shown below:
Press 1 to begin the installation process. The installer will prompt you for various options.
Unless you need to customize and configure the Rust compiler, the default options should work for most users.
Once the installation is complete, add the Rust development environment to your system path using the source command as:
The ~/.cargo/bin directory holds the tools for Rust development, including the rustc command, rustup, cargo, etc.
Run the following command to verify that Rust is successfully installed:
The command should return the installed version of the Rust compiler. If you get an error, try re-installing the compiler and export the path to the .cargo directory. You may need to restart your terminal session to apply the changes.
To test if you have successfully installed Rust on your system, create a test project. For this, we can use the cargo command as follows:
The previous command will create a new cargo package inside the current working directory. Navigate into the hello_world/src directory and run the command:
The previous command will execute the code stored in the main.rs file inside the source directory.
If you want to remove the Rust compiler from your system, you can use the installer using the following command:
In this guide, we explored how we can set up the Rust compiler in Ubuntu or any Debian-based distro. Rust is an open-source language that provides high-performance with low-level control. We hope you found this article helpful. Check the other Linux Hint articles for more tips and information.
Canonical’s Kubernetes LTS (Long Term Support) will support FedRAMP compliance and receive at least 12…
Welcome to the Ubuntu Weekly Newsletter, Issue 878 for the week of February 2 –…
At Canonical, we firmly believe that delivering an outstanding, customer-centric support experience is impossible without…
I want to share how to install osTicket v1.14 for Ubuntu 20.04 server. osTicket written…
Now I want to share how to install WordPress on ubuntu 20.04 server. WordPress is…
Now I want to share the DNS server installation process on your Ubuntu 20.04 server.…