在CentOS 8上安装Rust
步骤1.首先,让我们首先确保您的系统是最新的。
sudo dnf install epel-release sudo dnf update
步骤2.在CentOS 8上安装Rust。
官方推荐的安装Rust的方法是使用Rust工具链安装程序Rustup。运行以下命令进行安装:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
一旦Rust安装完成,Cargo的bin目录(–安装了所有工具)将被添加到您的PATH环境变量中。~/.cargo/bin
~/.profile
接下来,通过运行以下命令来获取使用修改后的PATH的文件的源,并配置您当前的shell以与rust环境一起使用:~/.profile
source ~/.profile source ~/.cargo/env
要验证安装的版本,请运行:
$ rustc -V rustc 1.44.1 (8dGDT40ab 2020-11-26)
步骤3.创建一个Rust项目。
首先,创建一个将用作Workspace的文件夹,在其中创建另一个文件夹,该文件位于该文件夹中:
mkdir ~/projects cd ~/projects mkdir hello_boss cd hello_boss
现在,创建文件:
sudo nano hello_boss.rs
将以下代码粘贴到新文件中:
fn main() { println!("Hello, Boss!!!"); }
现在编译并运行程序:
rustc hello_boss.rs ./hello_world
您将看到Rust代码的输出:
Hello, Boss!!!
恭喜你!您已经成功安装了Rust。感谢您使用本教程在CentOS 8系统上安装Rust编程语言。有关其他帮助或有用信息,我们建议您检查Rust官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun40200.html