Small fixes to readme

master
Rafael M. Martins 4 years ago committed by Angelos Chatzimparmpas
parent 4e627933eb
commit 82fcf3973a
  1. 7
      README.md

@ -24,6 +24,7 @@ pip install -r requirements.txt
For the frontend: For the frontend:
- [D3.js](https://d3js.org/) - [D3.js](https://d3js.org/)
- [Plotly.js](https://github.com/plotly/plotly.js/) - [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. 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) # first terminal: hosting the visualization side (client)
# for Python3 # for Python3
python3 -m http.server python3 -m http.server
# or ```
or
```
# for Python2 # for Python2
python -m SimpleHTTPServer 8000 python -m SimpleHTTPServer 8000
```
```
# second terminal: hosting the computational side (server) # second terminal: hosting the computational side (server)
FLASK_APP=tsneGrid.py flask run FLASK_APP=tsneGrid.py flask run
``` ```

Loading…
Cancel
Save