web-dev-qa-db-ja.com

Ubuntu 16.04にpython2.7をインストールする方法

Ubuntu 16.04にPython 2.7をインストールしようとしています。 pythonまたはpython2またはpython2.7を試すと、次のメッセージが表示されます。

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

Sudo apt install python2.7を実行した後、次のメッセージが表示されますが、pythonと入力しても_ ​​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).

私も試しました:

  • 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

今まで何も機能していません。

python3と入力するだけでPython3.5にアクセスできますが、python2.7が必要です。 Pythonをインストールする前に、リポジトリを更新しました。何が間違っていますか?

更新

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

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

mongodb-compassを削除しようとします

Sudo apt-get purge mongodb-compass

次に、すべてが適切に配置されていることを確認します

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

この簡単なコマンドを試して、python 2.7をインストールしてください、ありがとう

Sudo aptインストールpython-minimal

2.7.Xバージョンを取得するバージョンを確認します(python -V)

1
Eeshwar Srujan