From a9639b2e000a1b9ed39a56318610e8d8efd42279 Mon Sep 17 00:00:00 2001 From: Angelos Chatzimparmpas Date: Fri, 3 Apr 2020 20:34:49 +0200 Subject: [PATCH] new --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f335ed2..669b92f 100755 --- a/README.md +++ b/README.md @@ -21,9 +21,11 @@ Demonstration of usage in Python: ``` # first terminal: hosting the visualization side (client) -python3 -m http.server # for Python3 +# for Python3 +python3 -m http.server #or -python -m SimpleHTTPServer 8000 # for Python2 +# for Python2 +python -m SimpleHTTPServer 8000 # second terminal: hosting the computational side (server) FLASK_APP=tsneGrid.py flask run