Sunday, December 6, 2015

How to install GTK+ on Lubuntu


You want to install GTK+ if you have program that requires GTK+ to work or you want to develop GTK based application, in this article i will show you how to install GTK+ on lubuntu.

So which GTK+ version do you need?? GTK+ 2 or GTK+ 3?

to install GTK+ 2, you run this command:

sudo apt-get install gtk+-2.0

to install GTK+ 3, you run this command:

sudo apt-get install gtk+-3.0

If you want to develop GTK based app, you need to run this instead:

sudo apt-get install libgtk2.0-dev

sudo apt-get install libgtk-3-dev

You might also want to install build essential:

sudo apt-get install build-essential

~ good luck ~

No comments:

Post a Comment