当前位置:   article > 正文

MacOS 上安装Rust_rust install which was built for mac os x 10.12

rust install which was built for mac os x 10.12

Mac OS 上 安装Rust

Rust 初体验:

为什么选择 Rust ?

Rust 语言有三大愿景:

  • 高安全
  • 高性能
  • 高并发

Rust 语言旨在以简单的方式开发高度可靠和快速的软件。

Rust 语言支持用现代语言特性来写一些系统级别乃至机器级别的程序

安装过程:

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

中间过程会让你选择安装方式:默认安装方式,自定义安装,取消安装。
在这里插入图片描述

安装成功:

在这里插入图片描述

Cargo:

一个Rust 编译和包管理工具。

cargo --version :查看cargo 工具版本

在上面安装完成之后:

source ~/.bash_profile
cargo --version
cargo 1.62.1 (a748cf5a3 2022-06-08)
  • 1
  • 2
  • 3

cargo 安装成功.

创建工程

创建一个Hello World工程来体验一下:

cargo new hello_workd
cd hello_workd/
tree .
.
├── Cargo.toml
└── src
    └── main.rs

1 directory, 2 files
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

打开’src/main.rs’:

fn main() {
    println!("This is Hello, world!");
}

  • 1
  • 2
  • 3
  • 4

编译

cargo build
   Compiling hello_workd v0.1.0 (/Users/xxxxx/workstation/project/learn/rust/hello_workd)
    Finished dev [unoptimized + debuginfo] target(s) in 1.33s
  • 1
  • 2
  • 3

运行查看结果

./target/debug/hello_workd 
This is Hello, world!
  • 1
  • 2

or:

cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.04s
     Running `target/debug/hello_workd`
This is Hello, world!
  • 1
  • 2
  • 3
  • 4

参考:

https://www.rust-lang.org/

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

闽ICP备14008679号