-
Create a virtual environment:
- MacOS and Linux:
python3 -m venv venv
- Windows:
python -m venv venv
- MacOS and Linux:
-
Activate the virtual environment:
- MacOS and Linux:
source venv/bin/activate - Windows:
venv\Scripts\activate
- MacOS and Linux:
Note: To deactivate the virtual environment:
deactivate
-
Install python dependecies:
pip install -r requirements.txt
-
Go to React folder and install dependencies:
cd react-app/ && npm install
-
To run the server:
cd .. python ./app.py