如何在Ubuntu上安装gtk开发依赖项?

前端之家收集整理的这篇文章主要介绍了如何在Ubuntu上安装gtk开发依赖项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的代码GTK tutorial在base.c.

我在Ubuntu上工作,当我编译使用

$ gcc base.c -o base `pkg-config --cflags --libs gtk+-2.0`

我得到以下错误

Package gtk+-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-2.0.pc' to the PKG_CONFIG_PATH environment variable
No package 'gtk+-2.0' found
base.c:1:20: fatal error: gtk/gtk.h: No such file or directory compilation terminated.

作为新的linux,有人可以帮助我设置环境,以便我可以成功编译/运行程序?

$ sudo apt-get install libgtk2.0-dev

一般来说,构建基于libfoo的东西,你需要libfoo-dev。

此外,要安装构建包所需的任何东西,比如gedit,您可以运行:

$ sudo apt-get build-dep gedit

搜索http://packages.ubuntu.com/或Synaptic可以帮助。

原文链接:https://www.f2er.com/ubuntu/350125.html

猜你在找的Ubuntu相关文章