pkg-config findet gtk + -3.0 nicht

43

Hier steht, dass das Paket gtk + -3.0 nicht gefunden wurde:

karl@karl-ux303ln:~$ pkg-config --cflags gtk+-3.0
Package gtk+-3.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-3.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk+-3.0' found

Allerdings habe ich anscheinend gtk3 installiert:

karl@karl-ux303ln:~$ dpkg -l libgtk* | grep -e '^i' | grep -e 'libgtk-*[0-9]'
ii  libgtk-3-0:amd64                            3.14.15-0ubuntu1~14.04~ricotz1                              amd64        GTK+ graphical user interface library
ii  libgtk-3-bin                                3.14.15-0ubuntu1~14.04~ricotz1                              amd64        programs for the GTK+ graphical user interface library
ii  libgtk-3-common                             3.14.15-0ubuntu1~14.04~ricotz1                              all          common files for the GTK+ graphical user interface library
ii  libgtk2.0-0:amd64                           2.24.23-0ubuntu1.3                                          amd64        GTK+ graphical user interface library
ii  libgtk2.0-bin                               2.24.23-0ubuntu1.3                                          amd64        programs for the GTK+ graphical user interface library
ii  libgtk2.0-common                            2.24.23-0ubuntu1.3                                          all          common files for the GTK+ graphical user interface library

Ich kann die Datei jedoch nicht finden gtk+-3.0.pc:

karl@karl-ux303ln:~$ sudo find / -name "gtk+-3.0.pc"
karl@karl-ux303ln:~$ 

Irgendwelche Ideen? Ich versuche, cmake zu verwenden, aber es kann gtk3 nicht finden.

Karl Morrison
quelle

Antworten:

79

Ich hatte nur die normalen gtk3-Dateien installiert, nicht die Entwicklungsdateien, die cmake benötigt, um zu nutzen:

sudo apt-get install build-essential libgtk-3-dev
Karl Morrison
quelle
Hinweis: Mit diesem Befehl wird derzeit die Version 3.18.9 für Xenial
Hee Jin
build-essential ist bereits die neueste version (12.4ubuntu1). libgtk-3-dev ist bereits die neueste Version (3.22.30-1ubuntu1). 0 aktualizowanych, 0 nowo instalowanych, 0 usuwanych i 3 nieaktualizowanych. a @ zelman: ~ $ pkg-config --modversion gtk Das Paket gtk wurde im Suchpfad von pkg-config nicht gefunden. Vielleicht sollten Sie das Verzeichnis mit "gtk.pc" zur Umgebungsvariablen "PKG_CONFIG_PATH" hinzufügen. Kein Paket "gtk" gefunden
Adam