user248230
user248230

Reputation: 111

ubuntu webkit install

i'm new to ubuntu and i want to install webkit 1.0 as dev version but i don't know what i have to do ?

Upvotes: 6

Views: 28982

Answers (3)

uzzz
uzzz

Reputation: 559

If you need development files for embedding webkit into your application you have to install libwebkit-dev package, execute this from a terminal:

sudo apt-get install libwebkit-dev

For Ubuntu 18.04 and later, you need:

sudo apt-get install libwebkitgtk-dev

Upvotes: 13

Tal
Tal

Reputation: 1215

For ubuntu 20.04 you need:

libwebkit2gtk-4.0-dev

Upvotes: 7

Liang Zhou
Liang Zhou

Reputation: 2165

Did you check out this article from Ubuntu official site: https://help.ubuntu.com/community/WebKit It gives everything you need to get webkit up and running on Ubuntu.

Upvotes: 2

Related Questions