2
$ sudo apt-get install uuid-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 uuid-dev : Depends: libuuid1 (= 2.27.1-6ubuntu3) but 2.27.1-6ubuntu3.1 is to be installed
E: Unable to correct problems, you have held broken packages.
Zanna
  • 72,312
coronaa
  • 21

2 Answers2

2

You need downgrade your libuuid1 version from 2.27.1-6ubuntu3.1 to 2.27.1-6ubuntu3.

You can use apt-get to do a downgrade, refer to this answer.

sudo apt-get install <package-name>=<package-version-number> OR
sudo apt-get -t=<target release> install <package-name>

If you are using synaptic package manager, you can also just simply select the package (in your case, search and select libuuid1), and go to menu Package > Force Version.. to choose the version you would like to install, then click Apply.

Gary Wang
  • 173
0

Enter this command and try again

sudo apt-get install -f
JG91
  • 9