Python <= 2.3
python -c "import SimpleHTTPServer as s; s.test();" 8000
Python >= 2.4
python -m SimpleHTTPServer 8000

Python 3.x
python -m http.server 8000

本文介绍了如何在不同版本的Python环境中启动简易HTTP服务器的方法,包括Python 2.3及以下、2.4及以上和Python 3.x版本的具体操作命令。
Python <= 2.3
python -c "import SimpleHTTPServer as s; s.test();" 8000
Python >= 2.4
python -m SimpleHTTPServer 8000

Python 3.x
python -m http.server 8000

2266

被折叠的 条评论
为什么被折叠?