Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.
sudo apt-get install g++

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:
 g++ : Depends: g++-4.7 (>= 4.7.0-1~) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
share|improve this question

1 Answer

Seems like you have some broken packages or dependencies. Try doing sudo apt-get update, if you get some error updating, try following:

sudo apt-get clean
cd /var/lib/apt
sudo mv lists lists.backup
sudo mkdir -p lists/partial
sudo apt-get clean
sudo apt-get update

and then try installing g++.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.