I am trying to use the ./configure option to install geany 0.21 on ubuntu. I am getting an error that the gtk dependencies aren't met. I think it may just be the naming of the dependencies that is stopping it . Any idas on how to get round it.
The error configure: error: Package requirements (gtk+-2.0 >= 2.12 glib-2.0
= 2.16 gio-2.0 >= 2.16) were not met:
No package 'gtk+-2.0' found
However I searched and found that all were installed just in the name format of gir1.2-gtk-2.0 (see below) the same holds true for glib and gio.
sayth@sayth-TravelMate-5740G:~/Downloads/geany-0.21$ sudo apt-get install gir1.2-gtk-2 Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting 'gir1.2-gtk-2.0' for regex 'gir1.2-gtk-2' gir1.2-gtk-2.0 is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Any ideas how to make configure complete?
Sayth
On 11/12/2011 08:19 PM, Sayth Renshaw wrote:
I am trying to use the ./configure option to install geany 0.21 on ubuntu. I am getting an error that the gtk dependencies aren't met. I think it may just be the naming of the dependencies that is stopping it . Any idas on how to get round it.
The error configure: error: Package requirements (gtk+-2.0 >= 2.12 glib-2.0 >= 2.16 gio-2.0 >= 2.16) were not met:
No package 'gtk+-2.0' found
sudo apt-get install libgtk2.0-dev
Cheers, Matthew Brush
On Sun, Nov 13, 2011 at 3:35 PM, Matthew Brush mbrush@codebrainz.ca wrote:
On 11/12/2011 08:19 PM, Sayth Renshaw wrote:
I am trying to use the ./configure option to install geany 0.21 on ubuntu. I am getting an error that the gtk dependencies aren't met. I think it may just be the naming of the dependencies that is stopping it . Any idas on how to get round it.
The error configure: error: Package requirements (gtk+-2.0 >= 2.12 glib-2.0 >= 2.16 gio-2.0 >= 2.16) were not met:
No package 'gtk+-2.0' found
sudo apt-get install libgtk2.0-dev
Cheers, Matthew Brush ______________________________**_________________ Geany mailing list Geany@uvena.de https://lists.uvena.de/cgi-**bin/mailman/listinfo/geanyhttps://lists.uvena.de/cgi-bin/mailman/listinfo/geany
Awesome thanks. All installed.
Sayth
On Sun, Nov 13, 2011 at 3:19 PM, Sayth Renshaw flebber.crue@gmail.com wrote:
I am trying to use the ./configure option to install geany 0.21 on ubuntu. I am getting an error that the gtk dependencies aren't met. I think it may just be the naming of the dependencies that is stopping it . Any idas on how to get round it. The error configure: error: Package requirements (gtk+-2.0 >= 2.12 glib-2.0
= 2.16 gio-2.0 >= 2.16) were not met:
As Matthew said you need the development package if you are compiling, libgtk2.0-dev
No package 'gtk+-2.0' found However I searched and found that all were installed just in the name format of gir1.2-gtk-2.0 (see below) the same holds true for glib and gio.
For your information these are not the GTK packages by another name, they are introspection data for the GTK interface. You still need the libgtk2.0 packages themselves, which the dev package above will get.
Cheers Lex