I installed Rust on my Ubuntu 16.04 machine through
curl https://sh.rustup.rs -sSf | sh
as can be seen on the Installation Page.
How do I now uninstall Rust?
I installed Rust on my Ubuntu 16.04 machine through
curl https://sh.rustup.rs -sSf | sh
as can be seen on the Installation Page.
How do I now uninstall Rust?
要卸载rustc
,rustup
并cargo
从我的 Ubuntu 16.04 安装中,我做了:
rustup self uninstall
它奏效了。
对于基于 Linux 的操作系统,可以使用以下命令:
rustup self uninstall
这将删除所有 Rust 编译器、工具链和数据,包括rustc
如果cargo
你是一个窗口,这应该可以,但如果你也想删除它,你必须手动删除 C++ 构建工具,尽管我永远不会推荐。
你可以通过卸载 cargo 然后自动删除它现在不需要的依赖项来手动删除旧的 rust 二进制文件:
sudo apt remove cargo
sudo apt autoremove