From 16335fa019472f58dfc4b36d82758143df98c73b Mon Sep 17 00:00:00 2001 From: Gary Herd Date: Sat, 6 Aug 2016 17:54:41 -0500 Subject: [PATCH] docs: Update README.md Inserted code snippet to start up web server if you only have Python 3 installed. If a user only has Python 3 installed the SimpleHTTPServer won't work --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 234ee33c4..95b7bcdc5 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ Some useful tips to help you get started: $> cd /path/to/your-project-folder $> python -m SimpleHTTPServer 8080 ``` + Or, if you only have Python 3 installed: + ```bash + $> cd /path/to/your-project-folder + $>python -m http.server 8080 + ``` 1. Open a browser and visit localhost:8080 1. Download and install [ngrok](https://ngrok.com/) to make your local server accessible remotely.