私は「Debian GNU/Linuxstretch/sid」を使っています。
次のようにAceStreamをインストールしようとしています。これらスピード。
しかし、次の行を追加すると/etc/apt/sources.list
:
deb http://repo.acestream.org/debian/ sid main
次のように公開鍵を取得します。
sudo wget -O - http://repo.acestream.org/keys/acestream.public.key | sudo apt-key add -
apt-get install acestream-engine
次の結果で試行に失敗しました。
Following packages have unresolved dependencies:
acestream-engine : Requires: python2.7-apsw but cannot be installed
(これは私の言語に翻訳されており、正確な結果ではありません)
グーグルをしてみpython2.7-apsw
たが何かそうだった。仮想パッケージこの問題をどのように処理するのかわかりません。
答え1
acestreamにバグレポートを送信すると、そのパッケージがacestream-engine
破損しています。 python2.7-apsw
Debian sid には存在しません。彼らが依存しなければならないパッケージを言いますpython-apsw
。
代わりに(または追加で)、debianパッケージを使用してコンテンツはありませんが、次に依存するequivs
パッケージを作成できます。python2.7-apsw
python-apsw
Package: equivs
Description-en: Circumvent Debian package dependencies
This package provides a tool to create trivial Debian packages.
Typically these packages contain only dependency information, but they
can also include normal installed files like other packages do.
.
One use for this is to create a metapackage: a package whose sole
purpose is to declare dependencies and conflicts on other packages so
that these will be automatically installed, upgraded, or removed.
.
Another use is to circumvent dependency checking: by letting dpkg
think a particular package name and version is installed when it
isn't, you can work around bugs in other packages' dependencies.
(Please do still file such bugs, though.)