web-dev-qa-db-ja.com

Pipelightのインストール中にエラーが発生しました

Pipelightをインストールしようとしましたが、エラーメッセージが表示されます。それについて私は何ができますか?

$ Sudo apt-get install --install-recommends pipelight-multi
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:
 pipelight-multi : Depends: wine-staging
E: Unable to correct problems, you have held broken packages.
1
Niklas

適切なレポが必要です。次のコマンドを実行してエラーを解決します。

Sudo add-apt-repository ppa:pipelight/stable
Sudo apt-get update
Sudo apt-get install --install-recommends pipelight-multi

同じエラーが発生する場合は、次のコマンドを実行して問題を確認します。

Sudo apt-get install wine-staging

これにより、何をインストールする必要があるか、どの依存関係を利用できないかに関するより正確な情報が提供されます。さらに情報を得るには、この情報を投稿してください。

1
mchid