When I try to install a package -
sudo apt-get -f install golang-go
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
chromium-browser : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
evolution-data-server : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
golang-go : Depends: golang-src (>= 2:1.2.1-2ubuntu1) but it is not going to be installed
Depends: golang-go-linux-amd64 (= 2:1.2.1-2ubuntu1) but it is not going to be installed
google-chrome-stable : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed
libcamel-1.2-45 : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
libnm-util2 : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
libnss3 : Depends: libnspr4 (>= 2:4.12) but it is not going to be installed
libnss3-nssdb : Depends: libnss3 (= 2:3.23-0ubuntu0.14.04.1) but 2:3.28.4-0ubuntu0.14.04.3 is to be installed
liboxideqtcore0 : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
libpurple0 : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
libreoffice-core : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or
libnspr4-0d (>= 1.8.0.10) but it is not going to be installed
skypeforlinux : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
When I try -
sudo apt-get install libnspr4
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libnss3 : Depends: libnspr4 (>= 2:4.12) but 2:4.10.2-1ubuntu1 is to be installed
libnss3-nssdb : Depends: libnss3 (= 2:3.23-0ubuntu0.14.04.1) but 2:3.28.4-0ubuntu0.14.04.3 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
Can anyone help me solve this problem? I am on Ubuntu 14.04
sudo apt install -f
thensudo apt update
then install withsudo apt install golang-go
– ptetteh227 Mar 27 '18 at 22:46