curl https://sh.rustup.rs -sSf | sh source $HOME/.cargo/env rustc --version 安装包版本查看 cargo --version hello.rs fn main() { println!("Hello rust"); } rustc hello.rs 运行可执行文件 ./hello