Can't Open Html5lib In Python
I just installed html5lib for Python with Windows Command Prompt. The package was installed here: File 'C:\Python27\lib\site-packages\html5lib However, if I try to import html5lib
Solution 1:
You're missing the six
module. You can download it from here, or better, use pip install six
.
Post a Comment for "Can't Open Html5lib In Python"