在Linux(ubuntu22.04)搭建rust开辟环境
1.安装rust1.安装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
结果出现:https://i-blog.csdnimg.cn/direct/dedab07d9e85445e951f64fc97c1ba6d.png表示rust安装乐成。
4.rust更新
rustup update
5.卸载rust
rustup self uninstall
6.安装cargo
sudo apt install cargo
查验是否安装乐成,如下图2所示表示安装乐成
https://i-blog.csdnimg.cn/direct/6be9d11050694cf99a313767f97db733.png
2.创建第一个rust步调, hello world
1.初识cargo:
Cargo是rust的构建系统和包管理工具,目的就是让差别的人拿到你的包都能直接编译运行,不会因为各种包依靠题目导致步调无法运行。
2.使用cargo:
1. cargo new hello_world 如下图所示: https://i-blog.csdnimg.cn/direct/b40ca32f70bf4c24b11b94e8423a7489.png
2.hello_world初始布局如下图所示:
https://i-blog.csdnimg.cn/direct/ccac3423ff6040ed9bb32e9e09622f0c.png
3.检察main.rs
https://i-blog.csdnimg.cn/direct/f40b5f4ff0b44cdbb4a12d8d1e8e5d1e.png
4.使用cargo运行该步调:cargo run(debug模式:加速编译速率,降低运行速率),结果如下图所示:
https://i-blog.csdnimg.cn/direct/befe8c7bc4b44313847ae84a829e9087.png
cargo run本质是两个步骤:
1.cargo build:编译
2…/target/debug/world_hello:执行可执行步调
3.cargo check:
作用:快速的查抄一下代码能否编译通过。
https://i-blog.csdnimg.cn/direct/c98047bae784436b82a732b96774e71e.png
4.cargo.toml和cargo.lock
cargo.toml是cargo特有的项目数据形貌文件。
cargo.lock是cargo根据toml文件天生的项目依靠详细清单。
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]