Classic Snake game written in python3
Project uses the arcade
module
- Create shell
poetry shell
- Install packages
poetry install
- Run the application
python src/main.py
- Create virtual environment
python -m venv .venv
- Activate created environment
# if you use bash or zsh source .venv/bin/activate # if you use fish shell source .venv/bin/activate.fish
- Install dependency
pip install arcade
- Run the application
python src/main.py