让我们开始rust 环境安装
Posted 柳清风09
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让我们开始rust 环境安装相关的知识,希望对你有一定的参考价值。
为啥我想学rust呢?无它,没有gc的STW。既有c的速度,又具有安全的内存使用,还不用gc,why not try it!
首先是rust运行时安装
如果是mac非常方便
brew install rust
但如果还需要安装一些格式化如:rustfmt等组件的话,通过下面脚本安装
curl https://sh.rustup.rs -sSf | sh
我这边是是vscode做rust开发,配置plugin,rust-analyzer
这个插件使用起来还是挺方便的。
配置完环境后,按照惯例开始我们第一个hello world。可以通过cargo new或者init创建一个rust项目。
fn main()
println!("hello 柳清风")
执行
$ cargo run
Compiling helloworld v0.1.0 (/Users/chenxy/rust/helloworld)
Finished dev [unoptimized + debuginfo] target(s) in 0.61s
Running `target/debug/helloworld`
hello 柳清风
prefect !!!
以上是关于让我们开始rust 环境安装的主要内容,如果未能解决你的问题,请参考以下文章