When I was trying to install Git on Ubuntu 16.04, I get an error. The command I used to install git is:
sudo apt-get install git
The error I encountered was:
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:
git : Depends: liberror-perl but it is not going to be installed
Depends: git-man (> 1:2.7.4) but it is not going to be installed
Depends: git-man (< 1:2.7.4-.) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or
specify a solution).
Even though I used the suggested command (apt-get -f install) to install git the error still persists. Anyone who has the idea to fix this problem?
sudo apt-get update && sudo apt-get dist-upgrade && apt-get -f install
– George Udosen Feb 24 '17 at 06:19gdebi
will help:sudo apt-get install gdebi && sudo gdebi git
– George Udosen Feb 24 '17 at 06:46