Tenho problema quando implementei este comando sudo apt-get install tcl8.5-dev tk8.5-dev

1

Eu tenho problema quando eu implementei este comando

sudo apt-get install tcl8.5-dev tk8.5-dev

E eu entendo isso:

fawaz@fawaz-Lenovo-B590:~$ sudo apt-get install tcl8.5-dev tk8.5-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:
 tcl8.5-dev : Depends: tcl8.5 (= 8.5.11-1ubuntu1) but it is not going to be installed
 tk8.5-dev : Depends: libx11-dev but it is not going to be installed
             Depends: libxss-dev but it is not going to be installed
             Depends: libxext-dev but it is not going to be installed
             Depends: libxft-dev but it is not going to be installed
             Depends: tk8.5 (= 8.5.11-1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
fawaz@fawaz-Lenovo-B590:~$ 

PLZ me ajude

    
por user426267 04.07.2015 / 01:03

1 resposta

0

Digite os seguintes comandos no terminal:

sudo apt-get update
sudo apt-get autoclean
sudo apt-get clean
sudo apt-get autoremove

Em seguida, digite:

sudo apt-get install tcl8.5 libx11-dev libxss-dev libxext-dev libxft-dev tk8.5.11-1

Agora, tente instalar tcl8.5-dev e tk8.5-dev novamente:

sudo apt-get install tcl8.5-dev tk8.5-dev
    
por TellMeWhy 04.07.2015 / 13:54