1

I get the following:

myPrompt: ~ $ sudo apt-get install libboost-all-dev
Reading package lists ... finished
Dependency tree
Status information is read ... finished
Some packages could not be installed. This may mean that
You have requested an impossible situation or if the
Are using the unstable distribution that some required packages have
not created or have not left Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
libboost-all-dev: Depends: libboost-date-time-dev but it is not installable
                    Depends: libboost-python-dev but it is not installable
                    Depends: libboost-thread-dev but it is not installable
E: Problems can not be corrected, you have held broken packages back.

Translated from german

I have no clue why this is. Tried to fix this according to some stuff found on the web... Like sudo apt-get -f install

Braiam
  • 67,791
  • 32
  • 179
  • 269
Michael
  • 171

1 Answers1

1

You have unmet dependencies. Try to use sudo apt-get install -f libboost-all-dev to install unmet dependencies as well.

Chester
  • 1,078