2

我正在使用 Windows,并尝试在 python 上安装 html5lib-0.90 库

C:\>python C:\Users\Junior\Downloads\Python\html5lib-0.90\setup.py install
Traceback (most recent call last):
File "C:\Users\Junior\Downloads\Python\html5lib-0.90\setup.py", line 36, in <module>
for name in os.listdir(os.path.join('src','html5lib'))
WindowsError: [Error 3] The system cannot find the path specified: 'src\\html5lib/*.*'

是否可以在 Windows 上安装此库?

有教程或安装手册吗?

4

1 回答 1

6

尝试:

C:\>cd \Users\Junior\Downloads\Python\html5lib-0.90\
C:\Users\Junior\Downloads\Python\html5lib-0.90>python setup.py install
于 2010-02-17T23:14:32.010 回答