Can not attach stdlib sources automatically without rustup 问题解决

在用 Pycharm 和 Clion 安装 Rust 插件的时候,出现了一个警告:Can not attach stdlib sources automatically without rustup。

出现这个问题的时候,主要是没有配置rust 标准库。解决方法如下:

1. 先去下载rust标准库: git clone --depth 1 https://github.com/rust-lang/rust.  克隆到 /opt目录下。不翻墙的花速度会慢一些

2. 打开 IDE 的 File-->setting 在搜索栏里 输入rust, 在Languages&Frameworks下方有个Rust,点击之后,在右侧 Standard library 的路径里 填入步骤一下载的标准库的路径 /opt/rust 即可。

rust插件安装后配置

你可能感兴趣的:(Can not attach stdlib sources automatically without rustup 问题解决)