conda 删除 openssl 后 python 崩溃

conda 删除 openssl 后 python 崩溃

在尝试解决软件包依赖关系问题时,我使用 conda 卸载了 openssl,因为这似乎是具有不满足规格的软件包之一。但是,一旦我这样做,一切都会崩溃:

conda 坏了:任何使用 conda 的尝试都会导致“ERROR:root:未找到 hash md5 的代码” iPython 坏了:我收到了相同的错误消息 pip 坏了:再次出现相同的错误消息

我已尝试 brew install openssl,但这只返回一条消息,提示“openssl 已安装”。

答案1

我已尝试 brew install openssl,但这只返回一条消息,提示“openssl 已安装”。

您应该使用--force强制安装。

brew install openssl
brew link openssl --force

显然,还有一个reinstall命令:

brew reinstall openssl

另请参阅如何使用 Homebrew(Mac)重新安装软件包?关于超级用户。

相关内容