When I try to import Webkit from gi.repository, it gives ImportError...

from gi.repository import Webkit ERROR:root:Could not find any typelib for Webkit Traceback (most recent call last): File "", line 1, in ImportError: cannot import name Webkit

Help please!!! :(

link|improve this question
Have you got the Webkit development package installed? – ptomato Oct 19 '11 at 19:19
feedback

1 Answer

Your error seems a typo and the library is not found for that.

You have to put "WebKit" instead of "Webkit".

Additionaly if you use Ubuntu check the library existence with:

$ locate girepository | grep WebKit
/usr/lib/girepository-1.0/WebKit-3.0.typelib

If doesn't exist you need install the package gir1.2-webkit-3.0:

# apt-get install gir1.2-webkit-3.0 

Then on python script:

import gi
gi.require_version('WebKit', '3.0')
from gi.repository import WebKit
link|improve this answer
Thanks Man!!! :) – Abhilash Nanda Nov 11 '11 at 12:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.