我尝试安装Google Play 音乐插件对于 Rythmbox。我首先尝试通过 PPA 安装它,如下所述这里。
执行后
sudo apt-get install rhythmbox-gmusic
我收到一条错误消息,内容是(可能不是正确的英文输出,因为我必须将其从德语翻译过来,但我想大家都知道发生了什么)
packagelists are read... done
dependencytree gets build
statusinformation are read... done
some packages could not be installed[...]
the following information might help you, to solve your problem:
the following packages have unmet dependencies
rhythmbox-gmusic : depends on: python-validictory but is not installable
E: problems can not be corrected, you have hold back damaged packages
因此在此之后,我尝试按照说明通过 PIP 安装插件这里
这成功了,但我尝试启用插件时收到警告标志(带有宽水平线的红色标志),如中所述这个问题
注意:我已经尝试了给出的所有 3 个解决方案此主题
但如果我尝试使用以下方式安装 python-validitory
sudo apt-get install python-validictory
我得到以下输出(再次从德语翻译而来)
packagelists are read... done
dependencytree gets build
statusinformation are read... done
package python-validictory is not available, but is referenced in another package.
This can mean that the package is missing, that it got redeemed or is only available from another source.
E: package »python-validictory« has no installation candidate
有人能告诉我如何获取 python-validictory 或如何让这个插件工作吗?提前谢谢。
[更新] 我忘了说我还看了本网站但不知道是什么
这些包都可以从 universe/main 安装。
方法。
答案1
这些包都可以从 universe 安装。
您必须启用 Universe 存储库。这样python-validictory
才能安装该包。
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" # command to enable Universe repository
sudo apt-get update # Command to update all repositories
sudo apt-get install python-validictory # Command to install python-validictory package
编辑
sudo add-apt-repository ppa:dput-ng-maint/daily
sudo apt-get update
sudo apt-get install python-validictory
编辑
这些命令运行后
sudo -i
curl https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | python
exit
sudo apt-get install python-pip
sudo pip install gmusicapi --upgrade
现在打开您的 Rythmbox 并启用 Google Play 音乐插件。