unix安装教程
1. 终端安装
1 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
2. 安装目录
安装之后,需要注意安装目录的问题,笔者遇到的情况是安装后,需要自己自行配置环境变量,才能正常全局使用。
通常是安装在家目录下,名字为: .cargo
可以通过配置path,设置在自己用户文件中,比如: bash_profile
1 PATH=$HOME/.cargo/bin:$PATH
或者执行 .cargo目录下的一个shell脚本
1 sh $HOME/.cargo/env
也能将环境变量全部生效,目前来讲,这个env脚本都是临时写入
3. 使用
cargo
1 cargo --version 2 cargo --help
cargo 是rust的编译器、包管理器、通用工具。
rustc
rustc --version rustc --help
rustc是rust的直接编译器,cargo内置调用rustc,视情况调用rustc编译
rustdoc
rustdoc --version rustdoc --help
文档生成器
4. sample项目
生产新项目
1 cargo new --bin hello
运行新项目,来到创建目录的根目录下,执行cargo run即可。
cargo run
ps: 这里可以看出cargo命令的复用情况了。
关于项目生成的目录
关于生成的main文件代码
1 fn main() { 2 println!("Hello, world!"); 3 }
标签:cargo,--,rustc,安装,目录,rust From: https://www.cnblogs.com/supermarx/p/18119601