rust学习1——安装

2022-06-26  本文已影响0人  yozosann

安装

直接进官网,mac上:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

由于我用的是fish,不支持~/.cargo/env里的case语法,所以我们需要把~/.cargo/env,里的所有内容替换为:

set -gx PATH "$HOME/.cargo/bin" $PATH;

常用命令

hello world

#### 编译
rustc ./hello_world.rs

#### 执行
./hello_world

Cargo

类似npm包。

Cargo.toml

包信息和依赖

上一篇 下一篇

猜你喜欢

热点阅读