저는 "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
데비안 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.)