Added python 3 version self hosting startup option as the module was

renamed from python 2 -> python 3.
This commit is contained in:
Thomas Fankhauser 2016-02-06 14:57:41 +01:00
parent f2a9f1f6d8
commit 11fbd0c023

View file

@ -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)!