Skip to content

Latest commit

 

History

History
50 lines (48 loc) · 726 Bytes

README.md

File metadata and controls

50 lines (48 loc) · 726 Bytes

SIMON GAME

Prerequisites

Installation

1. Clone the repo

git clone https://github.com/samuelkrupik/simon-game.git

2. Cd into the directory

cd simon-game

3. Make virtual environment

  • On Windows
py -m venv env
  • On Mac/Linux
python3 -m venv env

4. Activate virtual environment

  • On Windows
source env/bin/activate.bat
  • On Mac/Linux
.\env\Scripts\activate

5. Install dependencies

pip install -r requirements.txt

6. Run simon

  • On Windows
py main.py
  • On Mac/Linux
python3 main.py