切换到要启动 Web 服务的目录:
python2:
python -m SimpleHTTPServer 8080
python3:
python3 -m http.server 8080
可以看到启动日志:
Serving HTTP on 0.0.0.0 port 8080 ...
就可以用浏览器访问 localhost:8080
了。
Tips
如果你用 zsh ,可以使用别名简化命令
如果你用的是 bash,则需要编辑 .bash_profile
vim ~/.zshrc
添加一行:
alias http-server="python -m SimpleHTTPServer"
然后可以用别名启动 HTTP 服务:
http-server 8080