Vad*_*rov 3 installation conflicting-libraries conda
我正在尝试安装conda install -c conda-forge opencv --no-deps --no-update-deps,但examining conflicts需要很长时间。我在网上查到这是一个已知问题,没有好的解决方案。
是否有可能迫使 Conda 完全跳过这一步?可能甚至简单地用二进制文件解压存档也适用于我的特定情况。
这些冲突报告的 Conda 术语是不可满足的提示,并且有一个配置选项可以切换其报告:
$ 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
Run Code Online (Sandbox Code Playgroud)
要禁用它们,请设置
conda config --set unsatisfiable_hints false
Run Code Online (Sandbox Code Playgroud)