aluntzer / gtknodes

A GTK-based library to create functional flow graphs with the ability to pass arbitrary data between connected elements.
Other
92 stars 10 forks source link

checking for gobject-introspection... configure: error: gobject-introspection-1.0 is not installed #8

Closed ghost closed 3 years ago

ghost commented 3 years ago

I had an issue where upon running ./ configure I got the error:

checking for gobject-introspection... configure: error: gobject-introspection-1.0 is not installed

but then when I tried installing with sudo apt install gobject-introspection it says it is already installed:

gobject-introspection is already the newest version (1.64.1-1~ubuntu20.04.1).

The fix which I found here was to install libgirepository1.0-dev:

sudo apt install libgirepository1.0-dev

and then every worked fine. My suggestion is to possibly include libgirepository1.0-dev in the dependencies.

Thanks.

aluntzer commented 3 years ago

Added, thanks for the info!