$ 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.
Asked
Active
Viewed 5,781 times
2
2 Answers
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
- 133
0
Enter this command and try again
sudo apt-get install -f
-
still same error amanyubntu@amanyubntu:~$ sudo apt-get install -f Reading package lists... Done Building dependency tree
Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. – coronaa Feb 10 '17 at 08:05
sudo apt-get update
then try. I think you maybe have out of date repository information. – Thomas Ward Feb 09 '17 at 16:07apt-get update
? Please post them. Either way proceed to a full update withsudo apt-get dist-upgrade
. Again, if you notice error messages post them. – Feb 12 '17 at 09:34