gpt4 book ai didi

debian - 如何在 Debian 上的 VSCode 中正确设置 Rust 环境?

转载 作者:行者123 更新时间:2023-11-29 08:06:21 25 4
gpt4 key购买 nike

我尝试设置 VSCode 以在 Debian 中使用 Rust 进行开发。我的 Rust 安装来自 Debian 存储库,安装有

# aptitude install rustc

我为自动补全安装了 VSCode 插件 Rustycode 但随后出现了问题:racer 需要 Rust 源代码:

$ racer complete std::
RUST_SRC_PATH environment variable must be set to point to the src directory of a
rust checkout. E.g. "/home/foouser/src/rust/src"

我找不到从 Debian 存储库安装源代码的方法,我认为这是最佳实践,因为如果 rustc 来自 Debian 存储库,而源代码来自 github,则可能有它们之间存在一些差异(不同版本)。

我读了一些关于 rustup 的东西,我不太明白它的用途,但我认为它就像 Rust 的包管理器。我不喜欢这个想法,因为 Debian 的一大优势是集中式包管理器可以使用一个命令更新所有内容。

最佳答案

使 Rust 成为 Debian 系统上一流的可安装公民的工作正在进行中,但据我所知,我们还没有做到这一点。目前,我建议 apt-get 卸载 rustc,然后:

curl https://sh.rustup.rs -sSf | sh

根据 the Rust installation guides 的建议.

我和下一个人一样讨厌这种安装方法,并建议您查看该 shell 脚本而不是盲目安装它,但最终您相信上游正在做正确的事情。

至少在这种情况下,shell 脚本和 rustup 都不需要 root 访问权限,因此默认情况下只是将它们全部安装到 ~/.rustup/ 中。

虽然我期待将来在我自己的 Debian 笔记本电脑上使用 apt 安装 Rust,但我认为除了上述方法之外做任何其他事情都会与当前推荐的方法背道而驰。

shell 脚本安装 rustup 也是毫无意义的。 rustup 安装主要组件,包括 rustccargo。可能不太明显的是,cargo 然后可以安装用 Rust 编写的其他工具,包括 racer:

cargo install racer
cargo install rustfmt
cargo install clippy

仅举几例。

关于debian - 如何在 Debian 上的 VSCode 中正确设置 Rust 环境?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41473255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com