프로그래밍 언어/Python

Python 3에서 "python -m SimpleHTTPServer" 사용하는법

Rateye 2021. 12. 13. 00:24
728x90
반응형
질문 : "python -m SimpleHTTPServer"에 해당하는 Python 3은 무엇입니까?

python -m SimpleHTTPServer 해당하는 Python 3은 무엇입니까?

답변

문서에서 :

SimpleHTTPServer 모듈은 Python 3.0에서 http.server 로 병합되었습니다. 2to3 도구는 소스를 3.0으로 변환 할 때 가져 오기를 자동으로 조정합니다.

따라서 명령은 python -m http.server 이거나 설치에 따라 다음과 같을 수 있습니다.

python3 -m http.server
출처 : https://stackoverflow.com/questions/7943751/what-is-the-python-3-equivalent-of-python-m-simplehttpserver
728x90
반응형