卸载软件包及其依赖项
Uninstall package and its dependencies
我正在尝试卸载一个私有包,但因为它被其他包使用,Chocolatey 向我展示了这个:
Unable to uninstall 'tibco-businessworks 6.5.1' because 'bw_6.5.1_hf_002 6.5.1.002, tibco_bwpluginibmi 7.2.0' depend on it.
问题是当我使用这个命令时
choco uninstall tibco-businessworks -forcedependencies
Chocolatey 向我显示了与之前相同的消息。我需要它在卸载根包之后卸载叶包。
Chocolatey 正试图通过尊重包存在的依赖链来防止其他包(以及它们的底层应用程序)不再工作。
根据 documentation,--forcedependencies
选项用于:
Uninstall dependencies when uninstalling package(s-). Defaults to false.
它对您当前的情况没有任何影响,因为 Chocolatey 告诉您其他软件包依赖于您要卸载的软件包。
要删除 tibco-businessworks
包,您必须先删除 bw_6.5.1_hf_002
和 tibco_bwpluginibmi
包。
我正在尝试卸载一个私有包,但因为它被其他包使用,Chocolatey 向我展示了这个:
Unable to uninstall 'tibco-businessworks 6.5.1' because 'bw_6.5.1_hf_002 6.5.1.002, tibco_bwpluginibmi 7.2.0' depend on it.
问题是当我使用这个命令时
choco uninstall tibco-businessworks -forcedependencies
Chocolatey 向我显示了与之前相同的消息。我需要它在卸载根包之后卸载叶包。
Chocolatey 正试图通过尊重包存在的依赖链来防止其他包(以及它们的底层应用程序)不再工作。
根据 documentation,--forcedependencies
选项用于:
Uninstall dependencies when uninstalling package(s-). Defaults to false.
它对您当前的情况没有任何影响,因为 Chocolatey 告诉您其他软件包依赖于您要卸载的软件包。
要删除 tibco-businessworks
包,您必须先删除 bw_6.5.1_hf_002
和 tibco_bwpluginibmi
包。