web-dev-qa-db-ja.com

Geanyデバッガーのインストール

Geanyにデバッグ用の新しいプラグインを追加したい。しかし、私は次の問題を抱えています:

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:  geany-plugins :
Depends: geany-plugin-git-changebar (>= 1.36+dfsg-1~16.04) but it is
not going to be installed
Depends: geany-plugin-workbench (>= 1.36+dfsg-1~16.04) but it is not going to be installed  E: Unable to correct problems, you have held broken packages.

それをインストールするにはどうすればよいですか?

私が使う: Sudo apt install geany-plugins

2
ArwenM

更新する必要がありますgeany-plugin-workbench

1.36はUbuntu Focalで予定されています = 20.04なので、Ubuntuユーザーは通常のインストール(つまり、apt)からは使用できません。

ソースインストール gitから:

バージョン管理から直接ダウンロード

Geany-Pluginsのソースをバージョン管理から直接プルすることもできます。これを行うには、次のようにGitリポジトリを複製します。git clone git://github.com/geany/geany-plugins.git geany-plugins

すべてのプラグインをビルドしてインストールします。

./autogen.sh # Note this already runs ./configure

make && make install
2
Rinzwind