我正在使用ubuntu 12.10。我有CODE:阻止IDE。 我想使用gtk +,但是当我创建一个项目并构建它时,它说它找不到gtk.h文件。
我通过编写
下载了gtk +,glib,pango,gdk-pixbuf和atkgit clone git://git.gnome.org/gtk+,
git clone git://git.gnome.org/glib
...
然后我解压缩了所有库。在这里,每件事都很好。
要安装gtk +我写“./configure --prefix = / opt / gtk” 它开始处理,大部分过程都没问题,但随后出现错误
...
checking for some Win32 platform... no
checking whether build environment is sane... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for BASE_DEPENDENCIES... no
configure: error: Package requirements (glib-2.0 >= 2.33.1 atk >= 2.5.3 pango >= 1.30.0 cairo >= 1.10.0 cairo-gobject >= 1.10.0 gdk-pixbuf-2.0 >= 2.26.0) were not met:
No package 'glib-2.0' found
No package 'atk' found
No package 'pango' found
No package 'cairo' found
No package 'cairo-gobject' found
No package 'gdk-pixbuf-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables BASE_DEPENDENCIES_CFLAGS
and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
我尝试在其目录中编写./configure来安装其他库。但它无法提交配置文件。
我设置了PKG_CONFIG_PATH
,但它无论如何都不起作用
我该如何安装?
答案 0 :(得分:10)
你应该使用:apt-get install libgtk2.0-dev
答案 1 :(得分:6)
您不需要git clone
步骤。只有在您想重建GTK +时才需要这样做。
您想要的是Linux发行版的开发包。在您的软件包中搜索libgtk*-dev
之类的内容,然后安装它。这将安装您需要的标头和所需的所有依赖项。此外,pkg-config
不需要任何提示来查找描述如何针对这些库构建和链接应用程序的.pc
文件,因此无需配置PKG_CONFIG_PATH
。
答案 2 :(得分:0)
您也可以按照gnome.org上的建议使用jhbuild 它会自动安装依赖项。
答案 3 :(得分:0)
您应该使用此:
sudo apt-get install libgtk-3-dev
在安装GTK之前
答案 4 :(得分:-1)
我已经通过了这个。这是因为没有设置IDE(在你的情况下是Code :: Bloks)来编译gtk库。您需要在终端中手动编译它:
gcc `pkg-config --cflags gtk+-2.0` -o nameOfYourFile nameOfYoutFile.c `pkg-config --libs gtk+-2.0`
你可以在codeblock或终端中运行它。