I'm trying to install VS Code into a Ubuntu 18.04.1 but system can't found libgconf-2-4.
> sudo dpkg -i code_1.25.1-1531323788_amd64.deb
Selecting previously unselected package code.
(Reading database ... 146489 files and directories currently installed.)
Preparing to unpack code_1.25.1-1531323788_amd64.deb ...
Unpacking code (1.25.1-1531323788) ...
dpkg: dependency problems prevent configuration of code:
code depends on libgconf-2-4; however:
Package libgconf-2-4 is not installed.
dpkg: error processing package code (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-11ubuntu1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Errors were encountered while processing:
code
I tried installing the library libgconf-2-4 manually but it have more dependencies and I don't want to be that cyclically.
Are there a way to install it easier?
Thanks!
sudo apt-get install -f
will fix problem. – N0rbert Aug 09 '18 at 11:00