如何卸载通过 rustup 安装的 Rust?
How to uninstall Rust that was installed via rustup?
我通过
在我的 Ubuntu 16.04 机器上安装了 Rust
curl https://sh.rustup.rs -sSf | sh
在Installation Page上可以看出。
我现在如何卸载 Rust?
要从我的 Ubuntu 16.04 安装中卸载 rustc
、rustup
和 cargo
,我做了:
rustup self uninstall
它奏效了。
如果您注意安装时收到的消息,您会找到您要查找的命令:
对于基于Linux的操作系统,可以使用以下命令:
rustup self uninstall
这将删除所有 Rust 编译器、工具链和数据,包括 rustc
和 cargo
如果您是 window 这应该可以,但是如果您也想删除它,则必须手动删除 C++ 构建工具,但我绝不会推荐。
您可以通过卸载 cargo 然后 auto-removing 现在 un-needed 依赖项手动删除旧的 rust 二进制文件来执行此操作:
sudo apt remove cargo
sudo apt autoremove
我通过
在我的 Ubuntu 16.04 机器上安装了 Rustcurl https://sh.rustup.rs -sSf | sh
在Installation Page上可以看出。
我现在如何卸载 Rust?
要从我的 Ubuntu 16.04 安装中卸载 rustc
、rustup
和 cargo
,我做了:
rustup self uninstall
它奏效了。
如果您注意安装时收到的消息,您会找到您要查找的命令:
对于基于Linux的操作系统,可以使用以下命令:
rustup self uninstall
这将删除所有 Rust 编译器、工具链和数据,包括 rustc
和 cargo
如果您是 window 这应该可以,但是如果您也想删除它,则必须手动删除 C++ 构建工具,但我绝不会推荐。
您可以通过卸载 cargo 然后 auto-removing 现在 un-needed 依赖项手动删除旧的 rust 二进制文件来执行此操作:
sudo apt remove cargo
sudo apt autoremove