Firstly, install pyenv to your machine. Visit official page and follow the instalation instructions.
pyenv install 3.11
pyenv virtualenv 3.11 photo-django
pyenv activate photo-django
In activated photo-django
virtual environment install poetry.
pip install poetry
For installing all packages (includes dev dependencies)
make install-all-packages
Installing packages for development
make install-packges
make run-server
make make-migrations
python manage.py makemigrations
make create-admin