准备:
1、python
2、新建一个test文件夹,新建一个demo.html
步骤:
1、测试python 是否安装成功
image.png
2、进入test文件夹
image.png
3、启动服务器
image.png#如果上面返回的Python版本是3.X
python -m http.server
#如果上面返回的Python版本是2.X
python -m SimpleHTTPServer
4、在浏览器中输入localhost:8000即可访问列出的目录的内容
image.png
若文件夹中有index.html,默认会直接打开index.html而不是上图的样子
网友评论