---恢复内容开始---
Python 3.0 以上的版本:
python -m http.server 8000
- 选项-m 表示以脚本模式运行模块
- 参数 8000 表示服务器端口
--bind x.x.x.x
指定绑定的网卡 IP 地址
Python 2.7.x 的版本:
python -m SimpleHTTPServer 8000
---恢复内容结束---
---恢复内容开始---
Python 3.0 以上的版本:
python -m http.server 8000
--bind x.x.x.x
指定绑定的网卡 IP 地址Python 2.7.x 的版本:
python -m SimpleHTTPServer 8000
---恢复内容结束---
转载于:https://www.cnblogs.com/yudis/articles/9635306.html