私はgitからsomething-for-redditをコンパイルしてインストールしたかったのです。
./configure.ac を実行すると、以下のエラーが表示されました。
./configure: line 5088: GLIB_GSETTINGS: command not found
./configure: line 5089: syntax error near unexpected token `1.42.0'
./configure: line 5089: `GOBJECT_INTROSPECTION_CHECK(1.42.0)'
ここでstackoverflowで検索したところ、GLIB_GSETTINGSはlibglib2.0-devにあることがわかりましたが、それをインストールしようとしたところ、
sudo apt-get install libglib2.0
再び以下のエラーが発生しました
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libglib2.0-0-refdbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-tests' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-bin' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-doc' for regex 'libglib2.0'
Note, selecting 'libglib2.0-data' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0' for regex 'libglib2.0'
libglib2.0-0 is already the newest version (2.48.1-1~ubuntu16.04.1).
libglib2.0-data is already the newest version (2.48.1-1~ubuntu16.04.1).
libglib2.0-bin is already the newest version (2.48.1-1~ubuntu16.04.1).
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:
libglib2.0-0-dbg : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
libglib2.0-0-refdbg : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
libglib2.0-dev : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
Depends: libglib2.0-bin (= 2.48.0-1ubuntu4)
1 か月前にシステムを 14.04 から 16.04 にアップグレードしましたが、何か見逃したのでしょうか、それとも今何か間違っているのでしょうか。
Reddit 用の git ソースはここにあります。https://github.com/samdroid-apps/something-for-reddit ここですべての依存関係を確認することもできます。パッケージの詳細: something-for-reddit-git 0.1-1
答え1
答えはダウングレードです。
stackoverflow で再度検索したところ、他の人も同じ問題に直面しており、次のコマンドを使用してそれぞれのライブラリをダウングレードすることが提案されていることがわかりました。
sudo apt-get install libglib2.0-0=2.48.0-1ubuntu4
sudo apt-get install libglib2.0-dev
今、私は次の問題で行き詰まっています。つまり./configure: line 5089
、GOBJECT_INTROSPECTION_CHECK(1.42.0)
「
ダウングレードを提案するリンクは次のとおりです:https://askubuntu.com/questions/58664/cant-install-package-libglib2-0-dev-because-it-depends-on-some-unknown-version/60314