From 11fbd0c02372f4c7598593b5440fee870ac09d89 Mon Sep 17 00:00:00 2001 From: Thomas Fankhauser Date: Sat, 6 Feb 2016 14:57:41 +0100 Subject: [PATCH] Added python 3 version self hosting startup option as the module was renamed from python 2 -> python 3. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2b15643..fa2c156 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,10 @@ Here's a simple example using the python simple web server: ```bash git clone https://github.com/glowing-bear/glowing-bear cd glowing-bear +# python 2.* python -m SimpleHTTPServer +# or python 3.* +python -m http.server ``` Now you can point your browser to [http://localhost:8000](http://localhost:8000)!