Project utilizes python specific version 3.11.2, install if don't exist.
pyenv install 3.11.2
pyenv local 3.11.2Check python version installed.
python --version # should be 3.11.2Handle dependencies for the project. Python venv is preferable.
python -m venv env --clear
pip install -r requirements.txt