web-dev-qa-db-ja.com

Ubuntu 16.04.3にcertbotをインストールできません

私はubuntu 16.04.サーバーにcertbotをインストールしようとしています、16.04.2で動作する同じコマンドはそれを行いません。 pythonインストール済みがデフォルトですPython 2.7.12

これはインストールスクリプトです。

#!/bin/bash

Sudo apt-get update
Sudo apt-get install software-properties-common
Sudo add-apt-repository ppa:certbot/certbot
Sudo apt-get update
Sudo apt-get install python-certbot-nginx 

そしてこれが出力です

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 python-certbot-nginx : Depends: certbot (>= 0.17.0~) but it is not going to be installed
                        Depends: python-acme but it is not going to be installed
                        Depends: python-certbot but it is not going to be installed
                        Depends: python-mock but it is not going to be installed
                        Depends: python-openssl but it is not going to be installed
                        Depends: python-pkg-resources but it is not going to be installed
                        Depends: python-zope.interface but it is not going to be installed
                        Depends: python:any (< 2.8)
                        Depends: python:any (>= 2.7.5-5~)
E: Unable to correct problems, you have held broken packages.

これを試してみると

Sudo apt-get install python-pkg-resources

私は得る

The following packages have unmet dependencies:
 python-pkg-resources : Depends: python:any (< 2.8)
                        Depends: python:any (>= 2.7.5-5~)
E: Unable to correct problems, you have held broken packages

私がすでに試したこと

Sudo add-apt-repository universe
Sudo apt-get update
Sudo apt-get install -f
Sudo apt-get install --reinstall python2.7

より詳しい情報

$ apt-cache policy python
python:
  Installed: 2.7.12-1
  Candidate: 2.7.12-1
  Version table:
 *** 2.7.12-1 100
        100 /var/lib/dpkg/status
     2.7.11-1 500
        500 http://us-west-2.ec2.archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
4
Gus

申し訳ありませんが、問題が解決されないことは承知しておりますが、他の人の役に立つかもしれません。私は同じ問題を抱えていて、解決策を https://github.com/certbot/certbot/issues/5247 -ユニバースリポジトリの有効化-add-apt-repository universeで見つけました

1
Javier Arias

このタイプの問題は、部分的に完了したアップグレード、またはパッケージのインストールが失敗した場合によく見られます。

The following packages have unmet dependencies:
python-pkg-resources : Depends: python:any (< 2.8)
                       Depends: python:any (>= 2.7.5-5~)
E: Unable to correct problems, you have held broken packages

dpkg --get-selections | grep holdは何を示していますか?これらを削除、インストール、または再インストールできますか? dpkg --configure -aを実行して、スタックしているインストールを「終了」してみることはできますか?

または、/etc/apt/sources.listまたは/etc/apt/sources.list.dの複数の異なるubuntuリリースのソースファイルがありますか(正しく完了しなかったアップグレードから)。

最後に、Sudo aptitude install python-certbot-nginxは何を示唆していますか(aptitudeは依存関係ロジックの解決をより良く/より深くすることができますが、その提案のいくつかは少しクレイジーすぎるかもしれないことに注意してください!)

0
match