无法在 Ubuntu 20.10 中安装 Stremio

无法在 Ubuntu 20.10 中安装 Stremio

我已经stremio从此处下载了安装文件网站。解压.deb文件时(在 Ubuntu 20.10 64 位机器上),出现以下错误:

Unpacking stremio (4.4.116-1) ...
dpkg: dependency problems prevent configuration of stremio:
 stremio depends on nodejs; however:
  Package nodejs is not installed.
 stremio depends on qml-module-qt-labs-platform (>= 5.9.5); however:
  Package qml-module-qt-labs-platform is not installed.
 stremio depends on qml-module-qtwebchannel (>= 5.9.5); however:
  Package qml-module-qtwebchannel is not installed.
 stremio depends on qml-module-qtwebengine (>= 5.9.5); however:
  Package qml-module-qtwebengine is not installed.
 stremio depends on libfdk-aac1 (>= 0.1.5); however:
  Package libfdk-aac1 is not installed.

dpkg: error processing package stremio (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 stremio

为了解决错误或修复缺少的依赖项,我运行了命令sudo apt -f install。但是,除了卸载损坏的stremio安装之外,此命令什么也不做。

请帮忙。

答案1

试试这个兄弟,对我有用

wget https://dl.strem.io/shell-linux/v4.4.116/stremio_4.4.116-1_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/multiverse/f/fdk-aac/libfdk-aac1_0.1.5-1_amd64.deb 
sudo dpkg -i libfdk-aac1_0.1.5-1_amd64.deb
sudo apt install ./stremio_4.4.116-1_amd64.deb

相关内容