您现在的位置是: 首页 > 后端开发 > Python 在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
2020-05-20 【Python】 3280人已围观 5472次浏览
简介在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
由于本地开发环境通过brew安装了python和php,在使用brew更新python时出现问题(具体日志找不到了),同时提示php版本出现问题
在使用php -v命令时,出现
dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib
Referenced from: /usr/local/opt/curl-openssl/lib/libcurl.4.dylib
Reason: image not found
[1] 1157 abort php -v
以上错误提示
根据提示内容,提示找不到库,此时去路径/usr/local/opt/下面,已经找不到libpsl的文件
然后通过
brew search libpsl
发现已经存在或者并不存在的情况下,执行
安装
brew install libpsl
或者重新安装
brew reinstall libpsl
完成后,重新执行php -v则正常返回php版本信息,并且路径/usr/local/opt/下面存在libpsl文件。
重新执行python3 --version正常返回python版本信息,则问题修复
很赞哦! (0)
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- nuxt 项目完整部署方案
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes