3

我刚刚使用 Windows 命令提示符为 Python 安装了 html5lib。软件包安装在这里:

File "C:\Python27\lib\site-packages\html5lib

但是,如果我尝试导入 html5lib:

#! /usr/bin/python
import html5lib

我收到以下错误:

Traceback (most recent call last):
File "C:\Users\workspace\testhtml5\src\test.py", line 2, in <module>
import html5lib
File "C:\Python27\lib\site-packages\html5lib\__init__.py", line 16, in <module>
from .html5parser import HTMLParser, parse, parseFragment
File "C:\Python27\lib\site-packages\html5lib\html5parser.py", line 2, in <module>
from six import with_metaclass
ImportError: No module named six

关于可能导致错误的任何想法?谢谢

4

1 回答 1

1

您缺少six模块。您可以从这里下载它,或者更好的是,使用pip install six.

于 2013-06-23T05:39:02.817 回答