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 ```