Como instalar o python2.7 no Ubuntu 16.04

2

Estou tentando instalar o Python 2.7 no Ubuntu 16.04. Quando eu tento python ou python2 ou python2.7 , recebo a seguinte mensagem:

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

Depois de executar sudo apt install python2.7 , recebo a seguinte mensagem, mas o python ainda não está disponível quando digito python .

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).

Eu também tentei:

  • 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

Nada funcionou até agora.

Eu posso acessar o Python3.5 apenas digitando python3 , mas eu preciso do python2.7. Eu atualizei o repositório antes de tentar instalar o python. O que estou fazendo errado?

Atualizar

Executando a política de cache para 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

Executando a política de cache para o 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
    
por Raven 01.02.2018 / 22:31

2 respostas

1

Tente remover mongodb-compass com

sudo apt-get purge mongodb-compass

Em seguida, verifique se tudo está em vigor com

sudo apt-get install -f
sudo apt-get check
    
por N0rbert 01.02.2018 / 22:50
1

Experimente este comando simples e obtenha o python 2.7 instalado, obrigado

sudo apt instala o python-minimal

e verifique a versão que você vai ter a versão 2.7.X (python -V)

    
por Eeshwar Srujan 29.05.2018 / 10:03