【坑】Python3 SimpleHTTPServer
2019-11-10 本文已影响0人
quaeast
命令
使用 Python2 建立简单服务器的命令:
python -m SimpleHTTPServer 90
使用Python3 建立简单服务器的命令:
python -m http.server 80
使用 Python2 建立简单服务器的命令:
python -m SimpleHTTPServer 90
使用Python3 建立简单服务器的命令:
python -m http.server 80