rust更新和rust-analyzer server安装

rust 更新

rust可以使用指令更新

rustup update

更新之前要先把rustup的源配置成国内镜像

$ENV:RUSTUP_DIST_SERVER=‘https://mirrors.ustc.edu.cn/rust-static‘
$ENV:RUSTUP_UPDATE_ROOT=‘https://mirrors.ustc.edu.cn/rust-static/rustup‘

然后等待安装完成就可以了

rust-analyzer server

安装rust-analyzer server是为了vscode使用,在vscode中自动更新非常慢,所以自行下载然后编译安装

# clone the repo
$ git clone https://github.com/rust-analyzer/rust-analyzer && cd rust-analyzer

# install both the language server and VS Code extension
$ cargo xtask install

# alternatively, install only the server. Binary name is `ra_lsp_server`.
$ cargo xtask install --server

但是发现vscode还是要下载插件
只好改了vscode代理rust更新和rust-analyzer server安装_第1张图片
重新安装成功

你可能感兴趣的:(rust,rust)