Install google chrome in Fedora for the first time

When you install google chrome in fedora, you probably must have seen this error:

$ sudo rpm -i google-chrome-stable_current_x86_64.rpm
warning: google-chrome-stable_current_x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 7fac5991: NOKEY
error: Failed dependencies:
	/usr/bin/lsb_release is needed by google-chrome-stable-68.0.3440.106-1.x86_64
[muffat@localhost Downloads]$ sudo rpm -i google-chrome-stable_current_x86_64.rpm 
warning: google-chrome-stable_current_x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 7fac5991: NOKEY
error: Failed dependencies:
	/usr/bin/lsb_release is needed by google-chrome-stable-68.0.3440.106-1.x86_64

Try to install the dependencies:

$ sudo dnf install libappindicator-gtk3 vulkan redhat-lsb-core -y

And try again to install the chrome with rpm

Leave a Comment