Reputation: 111
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
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
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