summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-07-11 06:02:14 -0700
committerKenneth Graunke <kenneth@whitecape.org>2016-07-11 06:03:40 -0700
commite3fdfe14832ad18d5d2c9c949f3925faa7cff789 (patch)
tree31c4ef689ddc8132e5c4e7af4585ce96f723b945
parent7a5e854d397e5d2090d3175161861d0e5e77d851 (diff)
Update README with python3 http.server
I couldn't find the Python 2 SimpleHTTPServer module on Arch Linux, but python3's http.server works just fine and is shipped by default.
-rw-r--r--README4
1 files changed, 4 insertions, 0 deletions
diff --git a/README b/README
index d1f43d3..9262c73 100644
--- a/README
+++ b/README
@@ -31,6 +31,10 @@ In order to test your changes, run
python -m SimpleHTTPServer
+or
+
+ python3 -m http.server
+
in the directory containing index.html, and check
http://localhost:8000/ in your browser to make sure that everything
displays reasonably.