我已经设置了一个AWS EC2实例[Amazon Linux AMI 2017.03.1(HVM)],每当我试图检查chromedriver的版本时(从here下载了2.30,有足够的权限运行,因为stat -c "%a %n" chromedriver
提供了755 chromedriver
)都会使用命令
chromedriver --version
我得到以下错误:
error while loading shared libraries: libgconf-2.so.4:
cannot open shared object file: No such file or directory
ldd chromedriver
的结果也是:libgconf-2.so.4 => not found
我知道上面的库是由
GConf2
提供的(请参阅here)所以我运行了命令
yum install Conf2
我陷入了以下错误:
# yum install GConf2
Loaded plugins: priorities, update-motd, upgrade-helper
amzn-main | 2.1 kB 00:00:00
amzn-updates | 2.3 kB 00:00:00
No package GConf2 available.
Error: Nothing to do
注:
我以根用户的身份运行这些命令!
尝试执行
yum clean all
和
yum update
更新了所有包,仍然得到错误
也尝试了
yum provides */libgconf-2.so.4
,获取错误:Loaded plugins: priorities, update-motd, upgrade-helper No matches found
最佳答案
我在this
关于linux - 无法在AWS EC2 AMI中安装GConf2,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46330083/