Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 788 Bytes

README.md

File metadata and controls

24 lines (13 loc) · 788 Bytes

PacMan

This project is the game PacMan ran in an interactive environment using pygame.

Installation instructions

  1. Open the terminal and navigate to the directory where you wish to clone the repository and entering git clone https://github.com/example-user/PacMan.git, and then cd to the cloned repo cd PacMan

  2. Create a virtual environment: Mac: python3 -m venv venv followed by source venv/bin/activate Windows: python -m venv venv followed by venv\Scripts\activate

  3. Download dependencies: Mac: pip3 install -r requirements.txt Windows: pip install -r requirements.txt

  4. Run PacMan by either pressing the run button in your IDE or entering the following into your terminal: Mac: python3 main.py Windows: python main.py