一句话python启动httpserver

 

使用 Python 3

在终端或命令提示符中,导航到你想要提供文件服务的目录,然后运行以下命令:

python -m http.server 8000
sudo python3 -m http.server --bind 127.0.0.1 100

使用 Python 2

如果你使用的是 Python 2,命令略有不同:

python -m SimpleHTTPServer 8000

posted on 2024-09-27 12:09  toong  阅读(24)  评论(0编辑  收藏  举报