如何强制conda跳过检查冲突?



我试图安装conda install -c conda-forge opencv --no-deps --no-update-deps,但examining conflicts需要永远。我在网上发现这是一个没有好的解决方案的已知问题。

是否有可能强制Conda完全跳过这一步?也许对于我的特殊情况,甚至简单地用二进制文件解压缩存档也可以。

禁用不满意提示

这些冲突报告的Conda术语是unsatisfiable hints,并且有一个配置选项来切换它们的报告:

$ conda config --describe unsatisfiable_hints
# # unsatisfiable_hints (bool)
# #   A boolean to determine if conda should find conflicting packages in
# #   the case of a failed install.
# # 
# unsatisfiable_hints: true

设置

conda config --set unsatisfiable_hints false

最新更新