在Ubuntu 20.04 LTS Focal Fossa上安装Rust
步骤1.首先,通过apt
在终端中运行以下命令来确保所有系统软件包都是最新的。
sudo apt update
sudo apt upgrade
第2步。在Ubuntu 20.04中安装Rust编程语言。
运行以下命令以安装Rust:
sudo apt install rustc
安装完成后,您可以使用以下命令验证Rust的版本:
$ rustc --version Output rustc 1.41.0
步骤3.创建一个Rust项目。
首先,创建一个将用作Workspace的文件夹,在其中创建另一个文件夹,该文件位于该文件夹中:
mkdir ~/projects cd ~/projects mkdir hello_world cd hello_world
现在,创建文件:
sudo nano hello_world.rs
将以下代码粘贴到新文件中:
fn main() { println!("Hello, Boss!"); }
现在编译并运行程序:
rustc hello_world.rs ./hello_world
您将看到Rust代码的输出:
Hello, Boss!
恭喜你!您已经成功安装了Rust。感谢您使用本教程在Ubuntu 20.04 LTS(Focal Fossa)系统上安装Rust编程语言的最新稳定版本。有关其他帮助或有用信息,我们建议您检查Rust官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun41449.html