当前位置:   article > 正文

rust安装;cargo、rustc学习使用_cargo影响rust安装版本

cargo影响rust安装版本

参考:https://www.rust-lang.org/zh-CN/learn/get-started
https://www.bilibili.com/video/BV16B4y1q7Sq
在这里插入图片描述
安装目录一般就这 C:\Users\用户名\ 下;
rustc --print sysroot 命令查看
在这里插入图片描述

在这里插入图片描述

1、rust安装

官网下载windows版本64位exe,直接安装及添加环境变量;安装后默认一起安装好rust和cargo
1)按1默认安装
2)把箭头这些放入环境变量

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
3)rustc -V
在这里插入图片描述

2、cargo、rustc学习使用

a、rustc
1)创建个hello.rs文件

fn main(){

println!("hello world");

}
  • 1
  • 2
  • 3
  • 4
  • 5

2)运行rustc .\hello.rs编译;然后运行编译好的可执行文件./hello运行

在这里插入图片描述

b、cargo包管理器
1)cargo new hello-rust 生成hello-rust项目
目录结构:
在这里插入图片描述
2)进入 ello-rust目录里,运行cargo run,一起直接编译运行
ps:cargo build 只编译
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/1020815
推荐阅读
相关标签
  

闽ICP备14008679号