Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

shared libraries libgconf-2.so.4 is missing

I want to install chromedriver in one of the AWS EC2 instance which is linux(Red Hat Enterprise Linux Server release 6.7 Santiago - 64 bit). While installing the chromedriver, we ran into issue due to missing packages. I could find the package here but this in turn requires many other packages. Using any other AMI is not an option.

Error is -

error while loading shared libraries libgconf-2.so.4 cannot open shared object file 
like image 714
Pankaj Avatar asked Jun 03 '16 22:06

Pankaj


1 Answers

I am using Ubuntu x64 and yum didn't work for me. But I found somebody mentioning simply use $sudo apt install libgconf-2-4 worked for me to install the libgconf.

like image 132
JCQian Avatar answered Sep 21 '22 11:09

JCQian