web-dev-qa-db-ja.com

Ubuntu 18.10 wine-stagingをインストールできません

以前はワイン・ステイブルをインストールしていましたが、実行したい特定のプログラムについては、ワイン・ステージングを実行することをお勧めしました。したがって、私はwine-stableをアンインストールし、通常どおりwine-stagingをインストールしようとしました。

私が走るとき

Sudo apt install wine-staging

私は得る

 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 resolve the situation:

The following packages have unmet dependencies:
 wine-staging : Depends: wine-staging-AMD64 (= 4.0~rc7~cosmic) but it is not going to be installed
                Depends: wine-staging-i386 (= 4.0~rc7~cosmic)
E: Unable to correct problems, you have held broken packages.

したがって、依存関係をインストールしようとすると、必要なもののうさぎの穴をさらに掘り下げていきますが、何らかの理由でインストールできません。

たとえば、wine-staging-AMD64をインストールしようとすると、

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 resolve the situation:

The following packages have unmet dependencies:
 wine-staging-AMD64 : Depends: libavcodec58 (>= 7:4.0) but it is not installable
                      Depends: libavutil56 (>= 7:4.0) but it is not installable
                      Depends: libvkd3d1 but it is not installable
E: Unable to correct problems, you have held broken packages.

これは、Ubuntuのメインラインであり、インストールから1週間未満です。私は私のリポジトリをいじりませんでした、そして私は過去1時間を費やして、他の誰にとってもうまくいくように見えたが、Sudo dpkg --add-architecture i386。 winehqのウェブサイトから.debを直接インストールしようとしましたが、Ubuntuソフトウェアのインストールの進行状況は、インストールされたように1秒で0-100になり、何かが間違っていることを示すエラーなしで、もう一度インストールボタンが表示されます。 gdebiを使用すると、満足できない依存関係があることがわかります-これはそれ自体です。私は新しいLinuxユーザーではないので、単純なパッケージをインストールしようとするような、とんでもない問題のWebに遭遇したことはありません。現在、WINEプロジェクト内で何か起こっていることはありますか、それとも何か間違ったことをしていますか?この問題は私の忍耐力を真剣にテストしています。

2
Will

まったく同じ問題を修正しました。私はあなたと完全に同じ出力を持っていました。私はヴィックの答えに従いました。それは失敗しましたが、彼の答えが不十分だったのではなく、私がワインに複数のソースを持っているためでした/etc/apt/sources.list.d/additional-repositories.list。核オプションを実行する前に、追加のソースリストに競合するワインレポジトリがあるかどうかを確認してください。その場合は、それらをすべて削除してから、Vicの回答を実行して正しいリポジトリを追加し、必要なものをインストールしてください。

2
tldr

同様の問題がありました。 wineレポジトリキーを追加するのを忘れました。

$ wget -qO- https://dl.winehq.org/wine-builds/Release.key | Sudo apt-key add -

次にリポジトリを追加します

$ Sudo apt-add-repository 'deb http://dl.winehq.org/wine-builds/ubuntu/ bionic main'

そしてあなたのワインの味をインストールします

$ Sudo apt install winehq-staging

または$ Sudo apt install winehq-stable

新しいバージョンをチェックアウト

$ wine --version
wine-4.0
1
Vic