使用安装程序安装了Visual Studio Code
(64 位 deb 包)gdebi
,现在我想正确卸载它。
我尝试了以下方法,但无济于事 -
remove installation
---->中的选项gdebi
不起作用remove
----->选项Software Center
不起作用sudo dpkg --purge code
---->dpkg: warning: ignoring request to remove code which isn't installed
看起来我现在可能有一个损坏的包裹。我该如何手动将其删除?
答案1
在 中terminal
,sudo dpkg -P code
应该这样做...尽管 gdebiUninstall
选项也应该对你有用。你为什么要卸载它,因为它是一个很好的编辑器,尤其是对于源代码来说。
更新#1:
由于Code
已经使用 安装umake
,因此需要sudo umake --remove ide visual-studio-code
正确卸载它。
答案2
在我的 Ubuntu 18.10 上,我快速安装了 vscode。我可以使用以下命令将其删除:
sudo snap 删除 vscode
答案3
是我的错!
我使用 安装了 VSCode umake
,但错误地认为我已经使用了gdebi
。我最终从启动器文件中发现可执行文件位于 中Exec=/home/<username>/.local/share/umake/ide/visual-studio-code/bin/code
。
我只需要触发sudo umake --remove ide visual-studio-code
就可以彻底摆脱它!