2010-02-17 2 views
2

나는 Windows를 사용, 창문에이 라이브러리를 설치하려면이 가능 파이썬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/*.*' 

에 html5lib - 0.90 라이브러리를 설치하려고 해요?

자습서 또는 설치 설명서가 있습니까?

답변

6

시도 :

C:\>cd \Users\Junior\Downloads\Python\html5lib-0.90\ 
C:\Users\Junior\Downloads\Python\html5lib-0.90>python setup.py install 
+0

이 마법처럼 일했다! 고맙습니다 –

관련 문제