RemoveError: 'pyopenssl' is a dependency of conda and cannot be removed from conda's operating environment

RemoveError: 'pyopenssl' is a dependency of conda and cannot be removed from conda's operating environment

我正在尝试在 Windows 10 的 Ananconda 3.7 上安装和更新软件包。

当我运行代码:

 conda update --all

甚至

 conda install pandas

我收到以下错误:

 RemoveError: 'pyopenssl' is a dependency of conda and cannot be removed from conda's operating environment

我不知道这是为什么?也不确定是否应该删除此 pyopenssl 软件包,如果它无论如何都会有所帮助。

今天遇到了同样的问题,解决方法很简单:

conda deactivate
conda install --force-reinstall conda

正如错误消息所说,'pyopenssl' 是 conda 的依赖项。所以我想出了强制重装conda的想法,从而忽略了依赖循环。而且你必须停用环境,否则当虚拟环境仍然处于活动状态时,conda 会抱怨无法更新自身。