mac go error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
时间: 2023-12-15 22:06:18 浏览: 143
error while loading shared libraries xx.so处理方法
5星 · 资源好评率100%
这个错误是因为缺少libssl.so.1.1库文件导致的。在Mac上,这个库文件的名称可能会有所不同。解决这个问题的方法是安装OpenSSL并将其到动态链接库路径中。以下是解决这个问题的步骤:
1.使用Homebrew安装OpenSSL:
```shell
brew install openssl
```
2.将OpenSSL添加到动态链接库路径中:
```shell
export DYLD_LIBRARY_PATH=/usr/local/opt/openssl/lib:$DYLD_LIBRARY_PATH
```
3.重新运行你的程序,应该就可以正常工作了。
阅读全文