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

renamed from python 2 -> python 3.
paste-quickfix
Thomas Fankhauser 10 years ago
parent f2a9f1f6d8
commit 11fbd0c023
  1. 3
      README.md

@ -44,7 +44,10 @@ Here's a simple example using the python simple web server:
```bash ```bash
git clone https://github.com/glowing-bear/glowing-bear git clone https://github.com/glowing-bear/glowing-bear
cd glowing-bear cd glowing-bear
# python 2.*
python -m SimpleHTTPServer python -m SimpleHTTPServer
# or python 3.*
python -m http.server
``` ```
Now you can point your browser to [http://localhost:8000](http://localhost:8000)! Now you can point your browser to [http://localhost:8000](http://localhost:8000)!

Loading…
Cancel
Save