在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
【Rust】Rust的安装和配置本文参考链接: https://www.cnblogs.com/sunlingC/p/11120315.html
-----------------------参考文档------------------------------------- https://www.rust-lang.org/tools/install https://doc.rust-lang.org/cargo/reference/source-replacement.html --------------------------------------------------------------------- 本次安装是在Ubuntu18.04上面进行的 概念:
1.安装 运行curl命令下载rustup并运行安装 curl https://sh.rustup.rs -sSf | sh 如命令行中的提示,通过该命令会下载rust的编译器和包的管理器cargo 如果提示说Rust is installed now.Great! 表示rust已经安装完成了 生效环境变量 source $HOME/.cargo/env 2.验证安装 运行rustc查看版本号 rustc --version
3.运行hello_world 创建包和项目的文件夹 mkdir rust_projects cd rust_projects mkdir hello_world cd hello_world vim main.rs 在main.rs中输入内容并保存 fn main(){ println!("hello_world!"); } 使用rustc编译rs文件 rustc main.rs 编译完成之后会生成可执行文件 运行main这个可执行文件 ./main ---------------------------------------------------------- 问题解决: 1.error:linker 'cc' not found 这个是因为没有安装gcc导致,安装gcc之后再次编译即可 安装gcc sudo apt-get build-dep gcc |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论