欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用pyton在本地指定目录模拟服务器

程序员文章站 2022-04-09 10:12:58
1.cd 到指定目录 2.运行命令 python 3之前 python 3+ 3.运行后: 4.在浏览器输入 http://localhost:8888/. 测试,然后就可以浏览网页 ......

1.cd 到指定目录

2.运行命令

  python 3之前 

python -m simplehttpserver 8888 &

  python 3+ 

python -m http.server 8888 &

3.运行后:

使用pyton在本地指定目录模拟服务器

4.在浏览器输入   http://localhost:8888/.     测试,然后就可以浏览网页