Note: You need to have conda already installed (Refer to: https://docs.conda.io/projects/conda/en/latest/user-guide/install/)
- Create folder
csv
in project folder and place csv files inside it - Open terminal
cd
into project folder- Run
conda env create -f environment.yml
(This will create the conda environment and install the required libraries)
- Run
conda activate UBS_BE
- Run
python app.py
- Run
lsof -i:5000
and note the PID - Run
kill -9 {PID}
Shorthand:kill -9 $(lsof -t -i:5000)