Skip to content

Instantly share code, notes, and snippets.

@atsuya046
Created May 29, 2015 02:45
Show Gist options
  • Save atsuya046/92f237f2ca3ef20e44ae to your computer and use it in GitHub Desktop.
Save atsuya046/92f237f2ca3ef20e44ae to your computer and use it in GitHub Desktop.
pythonで簡単にWebサーバを作る

htmlファイルを作成

touch index.html
vi index.html
<h1>Hello World</h1>

htmlファイルの置いてあるdirectoryで以下のコマンドを実行

python -m SimpleHTTPServer 8000

ブラウザで'localhost:8000/index.html'を開く

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment