to install dependencies, do the following commands :
python -m venv venv
# On Windows
venv\Scripts\activate
# On Unix or MacOS
source venv/bin/activate
pip install -r requirements.txtto launch the application on the cpu, run the following command :
# if not on the virtual environment, activate it first
# On Windows
venv\Scripts\activate
# On Unix or MacOS
source venv/bin/activate
python app/main.pyto launch the application on the gpu, run the following command :
# if not on the virtual environment, activate it first
# On Windows
venv\Scripts\activate
# On Unix or MacOS
source venv/bin/activate
python app/main_compute_shader.py