Questions tagged «uninstallation»


9
如何卸载.vsix Visual Studio扩展?
我当前正在尝试为Visual Studio Express 2013安装XNA Game Studio。在实际安装XNA框架之前,我不小心运行了.vsix程序。 安装它并重新运行.vsix之后,我收到一条消息错误,指出该扩展名已经安装。这不是假的。 我尝试了很多事情来“删除”空的扩展名:例如进入%LocalAppData%\ Microsoft \ VisualStudio并尝试找到该扩展名,但是却发现自己一无所有。 我想知道如何正确卸载并重新安装框架。

6
如何在Mac上完全卸载vscode
我需要在Mac上全新安装vscode。我打开终端和除去.vscode/从~。我还Visual Studio Code.app/从中删除了/。但是,删除所有内容并下载新副本后,我安装并打开了编辑器,该编辑器记住了我上一个拥有的项目。对我来说,这意味着我还需要删除其他内容,但找不到。我去了文档,但是找不到有关卸载编辑器的任何信息。有谁知道如何从Mac上完全卸载VSCode? 我尝试过的 遵循此说明和新安装的vscode,会记住我打开的最后一个项目。 https://developer.xamarin.com/guides/cross-platform/getting_started/installation/uninstalling_xamarin/#Using_the_Uninstall_Script



1
如何删除使用wget安装的docker?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 4年前关闭。 改善这个问题 我已经使用docker.com上的安装教程安装了docker wget https://get.docker.com/ | sh。现在,我需要将其完全删除。apt-get remove docker,apt-get --auto-remove docker,apt-get remove docker.io,apt-get --auto-remove docker.io或任何其他组合不工作,因为我没有使用apt-get安装它。有什么方法可以比手动删除docker快得多? (如果有任何区别,我正在使用Ubuntu 14.04)。

6
如何卸载npm包?
我已经安装了grunt使用sudo npm install grunt,现在无法删除它。 我试过了: $ sudo npm uninstall grunt 但这给了我一个WARN: npm WARN uninstall not installed in /home/kuba/projects/node_modules: "grunt-cli" 我也试过rm,remove和unlink。和-g选项,但这些选项提供: npm WARN uninstall not installed in /usr/lib/node_modules: "grunt" 但是我仍然可以从命令行运行grunt。 编辑: $ whereis grunt grunt: /usr/local/bin/grunt $ file /usr/local/bin/grunt /usr/local/bin/grunt: symbolic link to `../lib/node_modules/grunt/bin/grunt' $ ls /usr/local/lib/node_modules grunt jshint $ ls …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.