0
点赞
收藏
分享

微信扫一扫

Centos7在安装google浏览器的rpm包软件时提示 错误:依赖检测失败:

九点韶留学 2022-03-26 阅读 45

问题描述

[root@localhost bin]# rpm -ivh /usr/google-chrome-stable_current_x86_64.rpm 
警告:/usr/google-chrome-stable_current_x86_64.rpm: 头V4 DSA/SHA1 Signature, 密钥 ID 7fac5991: NOKEY
错误:依赖检测失败:
	libxkbcommon.so.0()(64bit) 被 google-chrome-stable-99.0.4844.84-1.x86_64 需要

解决方案:

//使用repoquery --nvr --whatprovides 查询所缺少的依赖
[root@localhost bin]# repoquery --nvr --whatprovides libxkbcommon.so.0
Repository cr is listed more than once in the configuration
Repository fasttrack is listed more than once in the configuration
libxkbcommon-0.7.1-3.el7
//下载最后一行提示libxkbcommon-0.7.1-3.el7
[root@localhost bin]# yum install -y libxkbcommon-0.7.1-3.el7

举报

相关推荐

0 条评论