web-dev-qa-db-fra.com

Comment installer python2.7 dans Ubuntu 16.04

J'essaie d'installer Python 2.7 sur Ubuntu 16.04. Lorsque je saisis pythonou python2 ou python2.7, le message suivant s'affiche:

 The program 'python' can be found in the following packages:
 * python-minimal
 * python3
 Try: Sudo apt install <selected package>

Après avoir exécuté Sudo apt install python2.7, je reçois le message suivant mais python est toujours indisponible lorsque je tape pythonname__.

Reading package lists... Done Building dependency tree Reading state
information... Done You might want to run 'apt-get -f install' to
correct these: The following packages have unmet dependencies: 
mongodb-compass : Depends: gvfs-bin
                  Depends: python but it is not going to be installed     
python2.7 : Depends: python2.7-minimal (= 2.7.12-1ubuntu0~16.04.3) but 
it is not going to be installed
            Depends: libpython2.7-stdlib (= 2.7.12-1ubuntu0~16.04.3) but   
it is not going to be installed
E: Unmet dependencies. 
Try 'apt-get -f install' with no packages (or specify a solution).

J'ai aussi essayé:

  • Sudo apt install python
  • Sudo apt install python2.7
  • Sudo apt install python2
  • Sudo apt-get install python
  • Sudo apt-get install python 2.7
  • Sudo apt-get install python2

Rien n'a fonctionné jusqu'à maintenant.

Je peux accéder à Python3.5 en tapant simplement python3, mais j’ai besoin de python2.7. J'ai mis à jour le référentiel avant d'essayer d'installer Python. Qu'est-ce que je fais mal?

Mettre à jour

Exécution de la politique de cache pour python:

python2.7:
  Installed: (none)
  Candidate: 2.7.12-1ubuntu0~16.04.3
  Version table:
     2.7.12-1ubuntu0~16.04.3 500
        500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main AMD64 Packages
     2.7.12-1ubuntu0~16.04.2 500
        500 http://security.ubuntu.com/ubuntu xenial-security/main AMD64 Packages
     2.7.11-7ubuntu1 500
        500 http://us.archive.ubuntu.com/ubuntu xenial/main AMD64 Packages

Exécution de la politique de cache pour mongodb:

mongodb-compass:
  Installed: 1.6.0-1
  Candidate: 1.6.0-1
  Version table:
 *** 1.6.0-1 100
        100 /var/lib/dpkg/status
3
Raven

Essayez de supprimer mongodb-compass avec

Sudo apt-get purge mongodb-compass

Ensuite, vérifiez que tout est en place avec

Sudo apt-get install -f
Sudo apt-get check
1
N0rbert

Essayez cette commande simple et obtenez python 2.7 installé, merci

Sudo pour installer python-minimal

et vérifiez la version que vous obtiendrez version 2.7.X (python -V)

1
Eeshwar Srujan