Added python 3 version self hosting startup option as the module was
renamed from python 2 -> python 3.
This commit is contained in:
parent
f2a9f1f6d8
commit
11fbd0c023
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue