如何在Windows上安装Python的html5lib-0.90库?

Jun*_*r M 2 python html5lib

我正在使用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/*.*'
Run Code Online (Sandbox Code Playgroud)

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

有教程或安装手册吗?

Mat*_*ttH 6

尝试:

C:\>cd \Users\Junior\Downloads\Python\html5lib-0.90\
C:\Users\Junior\Downloads\Python\html5lib-0.90>python setup.py install
Run Code Online (Sandbox Code Playgroud)