Rust学习笔记 1.1 安装、配置开发环境

1.1 安装、配置开发环境

安装rust

这里不过多赘述。

linux

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

如果安装成功,将出现下面这行:

Rust is installed now. Great!

windows

rust编译工具:https://www.rust-lang.org/zh-CN/tools/install)

Windows 上安装 Rust 需要有 C++ 环境,有两种方式可供选择:

  1. x86_64-pc-windows-msvc(官方推荐)
  2. x86_64-pc-windows-gnu

在安装时可自行选择。

配置开发环境

推荐vscode作为rust的开发工具

Visual Studio Code下载地址:https://code.visualstudio.com/Download

插件:

  • rust-analyzer(必装)
  • Better TOML(推荐)
  • crates(推荐)
  • Error Lens(推荐)

你可能感兴趣的:(Rust,rust,学习,开发语言)