无法安装‘banshee-extension-lyrics’

无法安装‘banshee-extension-lyrics’

我正在尝试安装banshee-extension-lyrics扩展。通过sudo apt-get install banshee-extension-lyrics。但我收到如下错误。

rashed@rashed-HP-430-Notebook-PC:~$ sudo apt-get install banshee-extension-lyrics
[sudo] password for rashed: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package banshee-extension-lyrics is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'banshee-extension-lyrics' has no installation candidate

我试过我无法安装我想要的软件!但我遇到了同样的错误。我现在该怎么办?请帮忙。

答案1

banshee-extension-歌词无法使用在 Ubuntu 14.04 中。请参阅错误 #1268331-“banshee-community-extensions 已降级为 -proposed,尚未准备好用于 gtk3”

答案2

我已经Amarok在 ubuntu 14.04 LTS 64 位中安装了它。它可以很好地获取歌词。我知道这不是完美的解决方案,但在他们修复这个问题之前,banshee-extension-lyrics我会使用它Amarok作为替代方案。 在此处输入图片描述

答案3

检查这个脚本sec歌词ForBanshee.sh,它位于 extras 包中,可在此处找到ScriptEchoColor

基本上,它在终端上显示当前播放的音乐歌词,或者通过evince临时生成的 pdf 文件显示。

如果歌词缺失,它还会自动下载歌词。

答案4

对我来说,“旧”软件包仍然可以在 Ubuntu 14.04 上使用,尽管有错误消息。但是,安装后,它会“阻止”任何更新,直到再次卸载歌词扩展。这不是理想的情况,所以我必须采取以下解决方法:1) 安装“旧”扩展 2) 启动 banshee(启用扩展)3) 卸载扩展;banshee 会继续使用该扩展,直到您重新启动它

我使用以下脚本(start_banshee.sh)自动执行此操作:

#! /bin/bash
sudo dpkg --install ~/Downloads/banshee-extension-lyrics_2.4.0-2ubuntu1_all.deb
banshee > /dev/null 2>&1 &
sleep 20
echo Y | sudo apt-get -f install

相关内容