"ModuleNotFoundError: No module named 'BaseHTTPRequestHandler'"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
14번째 줄: 14번째 줄:
* [[NameError: name 'HTTPServer' is not defined]]
* [[NameError: name 'HTTPServer' is not defined]]


[[분류:ModuleNotFoundError]]
==참고==
* https://docs.python.org/3/library/http.server.html
* https://stackoverflow.com/questions/45229030/modulenotfounderror-no-module-named-basehttpserver
 
[[분류: ModuleNotFoundError]]
[[분류: 파이썬 http.server]]

2019년 12월 24일 (화) 10:58 기준 최신판

1 개요[ | ]

root@localhost:~# python3 -c 'import BaseHTTPRequestHandler'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'BaseHTTPRequestHandler'
root@localhost:~# python3 -c 'import http.server'
root@localhost:~#

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}