pkg-config ne trouve pas gtk + -3.0

43

Déclare ici que le paquet gtk + -3.0 n'a pas été trouvé:

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

Cependant, j’ai apparemment installé gtk3:

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

Cependant, je n'arrive pas à trouver le fichier gtk+-3.0.pc:

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

Des idées? J'essaie d'utiliser cmake mais il ne peut pas trouver gtk3.

Karl Morrison
la source

Réponses:

79

Je n'avais que les fichiers gtk3 normaux installés, pas les fichiers de développement nécessaires pour que cmake puisse utiliser:

sudo apt-get install build-essential libgtk-3-dev
Karl Morrison
la source
Remarque: cette commande installe actuellement la version 3.18.9 pour Xenial
Hee Jin,
build-essential est déjà la dernière version (12.4ubuntu1). libgtk-3-dev est déjà la dernière version (3.22.30-1ubuntu1). 0 aktualizowanych, 0 maintenanten instalowanych, 0 usuwanych i 3 nieaktualizowanych. a @ zelman: ~ $ pkg-config --modversion gtk Le package gtk est introuvable dans le chemin de recherche de pkg-config. Peut-être devriez-vous ajouter le répertoire contenant «gtk.pc» à la variable d'environnement PKG_CONFIG_PATH Aucun paquet «gtk» n'a été trouvé
Adam