macOS 解决 No package 'openssl' found 错误
No package 'openssl' found / Package 'libssl', required by 'openssl', not found错误
- No package 'openssl' found- Package 'libssl', required by 'openssl', not found
【macOS 解决 No package 'openssl' found 错误】提示
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.Alternatively, you may set the environment variables OPENSSL_CFLAGS
and OPENSSL_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
mac 下安装某些依赖 openssl 的依赖时,可能会遇到上面两个错误,首先确认是否已经安装了
openssl version / brew info openssl
,如果未安装,brew install openssl
。1、补充 PKG_CONFIG_PATH 路径
# ~/.bash_profile
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
export PKG_CONFIG_PATH
2、注册 openssl 到 pkgconfig 中
# 查看 openssl 是否在 pkgconfig 中
pkg-config --list-all | grep openssl# 如果 pkgconfig 中没有 openssl 包 则手动建立 或者 尝试 brew unlink/link 重建
cd /usr/local/Cellar/openssl@1.1/1.1.1d/lib/pkgconfig
ls -s `pwd`/openssl.pc /usr/local/lib/pkgconfig
3、声明 openssl lib/include 的路径
export OPENSSL_LIBS="-L/usr/local/Cellar/openssl@1.1/1.1.1d/lib"
export OPENSSL_CFLAGS="-I/usr/local/Cellar/openssl@1.1/1.1.1d/include"
以上三步,就可以将 openssl 的相关包依赖路径注册到会话中,执行编译安装即可。
推荐阅读
- parallels|parallels desktop 解决网络初始化失败问题
- 考研英语阅读终极解决方案——阅读理解如何巧拿高分
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- 六步搭建ES6语法环境
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- Spark|Spark 数据倾斜及其解决方案
- 解决SyntaxError:|解决SyntaxError: invalid syntax
- Spectrum|Spectrum 区块偶尔停止同步问题排查与解决笔记
- 一劳永逸地解决词汇量不够的问题