Skip to content

Instantly share code, notes, and snippets.

@iguoli
Last active April 8, 2018 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iguoli/6b31c839a52b291b8dcd1d49a9950046 to your computer and use it in GitHub Desktop.
Save iguoli/6b31c839a52b291b8dcd1d49a9950046 to your computer and use it in GitHub Desktop.
使用Python启动微型HttpServer

使用Python启动微型HttpServer

进入任意目录,启动以下命令,可将当前目录作为HttpServer的访问根目录

# python2.x
python -m SimpleHTTPServer 10010

# python3.x
python3 -m http.server 10010
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment