checking for openssl >= 0.9.8... no configure: error: OpenSSL support explicitly requested but Op...

首先确保已经安装了openssl

//安装OpenSSL
brew install openssl

如果已经安装就是没找到openssl的路径,有的时候会默认使用系统自带的老版本openssl,
此时可以在当前命令行窗口输入(注意是当前,不要在其他窗口输入)此命令只在当前窗口有效,关闭之后就没了

export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/opt/openssl/lib/pkgconfig

验证路径是否生效,会打印出路径。

echo $PKG_CONFIG_PATH

Done!

你可能感兴趣的:(checking for openssl >= 0.9.8... no configure: error: OpenSSL support explicitly requested but Op...)