From 82fcf3973af07897ac49c2c831e009e94caa5191 Mon Sep 17 00:00:00 2001 From: "Rafael M. Martins" Date: Tue, 7 Apr 2020 13:57:08 +0200 Subject: [PATCH] Small fixes to readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d56a30..cc8c27c 100755 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ pip install -r requirements.txt For the frontend: - [D3.js](https://d3js.org/) - [Plotly.js](https://github.com/plotly/plotly.js/) + There is no need to install anything for the frontend, since all modules are in the repository. @@ -33,10 +34,14 @@ Below is an example of how you can get t-viSNE running using Python for both fro # first terminal: hosting the visualization side (client) # for Python3 python3 -m http.server -# or +``` +or +``` # for Python2 python -m SimpleHTTPServer 8000 +``` +``` # second terminal: hosting the computational side (server) FLASK_APP=tsneGrid.py flask run ```