For Medical Data Analysis
Installation via requirements.txt
:
for Mac/Linux development
$ git clone https://github.com/Interactive-Media-Lab-Data-Science-Team/Data-Preprocessing-Tool.git
$ cd Data-Preprocessing-Tool
$ python3 -m venv myenv
$ source myenv/bin/activate
$ pip3 install -r requirements.txt
$ export FLASK_ENV=development
$ flask run
for Windows development
$ git clone https://github.com/Interactive-Media-Lab-Data-Science-Team/Data-Preprocessing-Tool.git
$ cd Data-Preprocessing-Tool
$ python3 -m venv myenv
$ myenv/Scripts/activate
$ pip3 install -r requirements.txt
$ set FLASK_ENV=development
$ flask run
Installation via Pipenv:
$ git clone https://github.com/Interactive-Media-Lab-Data-Science-Team/Data-Preprocessing-Tool.git
$ cd Data-Preprocessing-Tool
$ pipenv shell
$ pipenv update
$ flask run