web-dev-qa-db-ja.com

Thunar用RabbitVCSのインストール:パッケージthunarx-pythonがありません

14.04 Trustyで、 RabbitVCS-PPA からRabbitVCSをインストールしようとすると、次のエラーが発生します。

$ Sudo apt-get install rabbitvcs-thunar 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 rabbitvcs-thunar : Depends: thunarx-python (>= 0.3.0) but it is not installable
E: Unable to correct problems, you have held broken packages.
1
Thomas W.

残念ながら、thunarx-pythonはTrustyのPPAに含まれていません。 Raringのdebパッケージ から 別のPPA をインストールし、次のシンボリックリンクを設定することに成功しました。

$ Sudo ln -s "/usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0" "/usr/lib/libpython2.7.so.1.0"

これで、rabbitvcs-thunarパッケージ、ファイルメニューおよびコンテキストメニューでRabbitVCSメニュー項目を取得します。

0
Thomas W.