Python快速搭建HTTP Server

快速启动HTTP服务

//python2
python -m SimpleHTTPServer 8080
//python3
python -m http.server 9999

猜你喜欢

转载自blog.csdn.net/jinba225/article/details/118024656