Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 803 Bytes

README.md

File metadata and controls

47 lines (39 loc) · 803 Bytes

PySnake

Classic Snake game written in python3
Project uses the arcade module

Local run

With poetry

  1. Create shell
    poetry shell
  2. Install packages
    poetry install
  3. Run the application
    python src/main.py

With venv

  1. Create virtual environment
    python -m venv .venv
  2. Activate created environment
    # if you use bash or zsh
    source .venv/bin/activate
    # if you use fish shell
    source .venv/bin/activate.fish
  3. Install dependency
    pip install arcade
  4. Run the application
    python src/main.py

Game interface

game interface