解决Vscode中Rust rls无法安装错误 即rust在vscode中无法跳转
·
报错信息:couldn't start client Rust language server
解决方法
1
新建终端,在终端中输入
cargo +nightly install rustfmt
Rustfmt 是 Rust 下的代码格式化工具,类似于 gofmt。安装之后(并配置 VS Code 下的扩展)可以像在其它语言下的那样进行格式化
首次执行 cargo install 会消耗较长时间(特别是网络不好),因为它要连接 GitHub 进行 crates 的索引。此外,下载和编译要一定的时间。是的,它需要下载回来后进行编译
2
RLS 需要 Racer,而安装 Racer 稍微复杂,并且又是个考验网络的时候。
首先安装 nightly 的工具链,由于我这里使用的 x86_64-pc-windows-gnu,所以要执行:
rustup toolchain install nightly-x86_64-pc-windows-gnu
然后安装 Rust 源码:
rustup component add rust-src --toolchain nightly
之后vscode会报错
component 'rust-analysis' for target 'x86_64-pc-windows-msvc' is up to date
以及一个conflict信息(可能是与某 .lock .toml .rs文件冲突)
找到冲突位置
我的完整路径为
C:\Users\问天\.rustup\toolchains\nightly-x86_64-pc-windows-msvc\lib\rustlib\src\rust\library
然后删除该library文件夹中的所有内容
再执行
安装 Rust 源码:
rustup component add rust-src --toolchain nightly
你会看到该命令会重新生成文件夹和文件
3
最后关闭vscode,重启之后vscode提示rls server未下载,是否下载,点击下载,等待安装即可
更多推荐
已为社区贡献3条内容
所有评论(0)