Rust安装与环境配置

安装环境为 deepin15.4

安装

  1. 安装rustup
curl https://sh.rustup.rs -sSf | sh
  1. 安装过程中会出现如下信息:
Current installation options:
   default host triple: x86_64-unknown-linux-gnu
     default toolchain: stable
  modify PATH variable: yes
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation

选择1 继续安装。

  1. 安装完成后会提示如下信息:
source $HOME/.cargo/env
  1. (按需)重启系统 打开终端输入rustup查看效果,如果命令未找到,按如下方式为当前用户添加path。
sudo vi ~/.bashrc。
// 在文件结尾 添加如下内容
export PATH="$HOME/.cargo/bin:$PATH"

配置环境

使用 vscode 作为开发工具

  1. 打开 vscode 在扩展中搜索 rust 安装 Rust(rls) 插件。由于该插件使用了RLS(Rust Language Server),而 RLS 又需要nightly版本作为编译环境,假如之前没有安装,该插件会自动安装,具体信息插件主页.

你可能感兴趣的:(Rust安装与环境配置)