Não é possível instalar o "Terminator" no Ubuntu 12.04

3

Estou tentando instalar o "terminator" no Ubuntu 12.04. Mas retorna este erro:

The following packages have unmet dependencies:

terminator: Depends: python (>= 2.5) but 2.7.3-0ubuntu2.2 is to be installed
    Depends: python-vte but it is not going to be installed
    Depends: python-gtk2 (>= 2.14.0) but 2.24.0-3 is to be installed
    
por Zahed 22.04.2014 / 18:39

2 respostas

3

apt pode fornecer uma versão mais antiga, que pode ser incompatível, para instalar o mais recente Terminador:

sudo apt-get remove terminator

sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator

Fonte: instruções de instalação da página de terminação oficial

    
por CivMeierFan 08.05.2015 / 22:59
0

Experimente estes comandos:

  1. sudo apt-get update
  2. sudo apt-get -f install

Se isso não funcionar, faça o seguinte:

  1. sudo apt-get update
  2. sudo apt-get install python
  3. sudo apt-get install python-vte
  4. sudo apt-get install python-gtk2

Se isso não funcionar, baixe o python-vte do link e:

  1. Abra um console.
  2. cd ~/Downloads
  3. sudo dpkg -i python-vte_0.28.2-5ubuntu1_amd64.deb
  4. sudo apt-get -f install
por Kaz Wolfe 22.04.2014 / 19:13