web-dev-qa-db-ja.com

Unity Webアプリのプレビューをインストールできません

Unity-webapps-previewをインストールしようとしているので、以前にPPAを追加しました:

    $ Sudo add-apt-repository ppa:webapps/preview
    $ Sudo apt-get update

しかし、私は次のエラーが表示されます:

    $ Sudo apt-get install unity-webapps-preview
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    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.
    unity-webapps-preview : Depends: xul-ext-unity but it is not going to be installed
                            Depends: xul-ext-websites-integration but it is not going to > be installed
                            Depends: xul-ext-webaccounts but it is not going to be installed
    E: Unable to correct problems, you have held broken packages.

私は依存関係を手動でインストールしようとしましたが、私は得る:

    $ Sudo apt-get install xul-ext-unity xul-ext-websites-integration xul-ext-webaccounts
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    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.
    xul-ext-webaccounts : Breaks: firefox (>= 14.+) but 15.0.1+build1-0ubuntu0.12.04.1 is to be installed
    E: Unable to correct problems, you have held broken packages.

Firefoxのバージョン:15.0.1

Ubuntuのバージョン:12.04

6
R3v4n

現在のunity-webapps-previewパッケージは何らかの理由でFirefox 14に依存しているため(15以降では正常に動作しますが)インストールできないため、更新がインストールできるようになるまで待つ必要があります。 。

3
Alin Andrei

別のフォーラムのPiotrekSobieszczańskiは、「パッケージ名の末尾からプレビューを削除するだけです。$ Sudo apt-get install unity-webapps」と述べています。これは私のために働いた。

1
Webmonkey