阅读文档,看来我应该能够使用-x标志安装软件包及其依赖项。但是,当我尝试使用choco uninstall javaruntime -x命令卸载javaruntime软件包时,由于依赖关系,它失败了。

它给了我这个错误:

>  choco uninstall javaruntime -x
Chocolatey v0.10.1
Uninstalling the following packages:
javaruntime
javaruntime not uninstalled. An error occurred during uninstall:
 Unable to uninstall 'javaruntime 8.0.101' because 'groovy 2.3.6' depends on it.

Chocolatey uninstalled 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures
 - javaruntime (exited 1) - javaruntime not uninstalled. An error occurred during uninstall:
 Unable to uninstall 'javaruntime 8.0.101' because 'groovy 2.3.6' depends on it.

难道我做错了什么?

最佳答案

试试这个:

choco uninstall webdeploy -x

可以将 Web部署更改为要卸载的目标软件包。

chocolatey - 如何卸载Chocolatey软件包及其所有依赖项?-LMLPHP

10-04 18:56