web-dev-qa-db-ja.com

Ubuntu 12.04にRhythmbox用のGoogle Playミュージックプラグインをインストールする

Rythmboxに Google Play Musicプラグイン をインストールしようとしました。 here のように、最初に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経由でプラグインをインストールしようとしました here

これは成功しましたが、プラグインを有効にしようとしていますが、 この質問

注: このスレッドで指定された3つのソリューションすべてを試しました

しかし、python-validictoryをインストールしようとすると

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からインストールできます。

手段。

2
Jamie-505

これらのパッケージはすべてユニバースからインストールできます。

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ミュージックプラグインを有効にします。

2
Avinash Raj