关于mac电脑安装Thrift的过程中出现:Error: openssl@1.1 has been disabled because it is not supported upstream! It was disabled on 2024-10-24.的解决
mac电脑安装thrift步骤:
brew tap homebrew/core --force
brew tap-new $USER/local-tap
brew extract --version='0.16.0' thrift $USER/local-tap
brew install thrift@0.16.0
注意:第四步安装过成中会出现:
Error: openssl@1.1 has been disabled because it is not supported upstream! It was disabled on 2024-10-24.
这是因为:2024年10月24日,openssl@1.1 已经不支持upstream了。
解决办法:
打开安装文档,修改里面的openssl版本
brew edit thrift@0.16.0
将原来的
depends_on "openssl@1" 改成如图即可