web-dev-qa-db-fra.com

Impossible d'installer "Terminator" dans Ubuntu 12.04

J'essaie d'installer "Terminator" dans Ubuntu 12.04. Mais cela retourne cette erreur:

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
3
Zahed

apt peut vous donner une version plus ancienne, peut-être incompatible, pour installer le tout dernier logiciel Terminator:

Sudo apt-get remove terminator

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

Source: instructions d'installation de la page officielle du terminateur

3
CivMeierFan

Essayez ces commandes:

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

Si cela ne fonctionne pas, procédez comme suit:

  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

Si cela ne fonctionne pas, téléchargez python-vte à partir de http://packages.ubuntu.com/trusty/python-vte et:

  1. Ouvrez une console.
  2. cd ~/Downloads
  3. Sudo dpkg -i python-vte_0.28.2-5ubuntu1_AMD64.deb
  4. Sudo apt-get -f install
0
Kaz Wolfe