1.安装rust
1.安装curl:
sudo apt install curl
2.安装rust最新版
curl --proto ‘=https’ --tlsv1.2 https://sh.rustup.rs -sSf | sh
安装完成后出现:Rust is installed now. Great! 重启当前shell即可
3.检验是否安装成功
rustc --version
结果出现:表示rust安装成功。
4.rust更新
rustup update
5.卸载rust
rustup self uninstall
6.安装cargo
sudo apt install cargo
检验是否安装成功,如下图2所示表示安装成功
2.创建第一个rust程序, hello world
1.初识cargo:
Cargo是rust的构建系统和包管理工具,目的就是让不同的人拿到你的包都能直接编译运行,不会因为各种包依赖问题导致程序无法运行。
2.使用cargo:
1. cargo new hello_world 如下图所示:
2.hello_world初始结构如下图所示:
3.查看main.rs
4.使用cargo运行该程序:cargo run(debug模式:加快编译速度,降低运行速度),结果如下图所示:
cargo run本质是两个步骤:
1.cargo build:编译
2…/target/debug/world_hello:执行可执行程序
3.cargo check:
作用:快速的检查一下代码能否编译通过。
4.cargo.toml和cargo.lock
cargo.toml是cargo特有的项目数据描述文件。
cargo.lock是cargo根据toml文件生成的项目依赖详细清单。