An opportunistic programming tool for visualizations to make design easier.
Requirement: Python version >=3.7.
Virtual Environment is recommended for managing dependencies.
If using Virtual Environment:
mkdir venv
python3 -m venv ./venv
source venv/bin/activate
At development time, use source venv/bin/activate
(venv) or source activate falx
(conda) to activate the virtual environment.
-
Install python dependencies:
pip install -r requirements.txt
-
Install falx in the development mode:
pip install -e .
To run the Falx: cd falx; python3 interface.py
To run Falx as a server: cd server; env FLASK_APP=server.py flask run