Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.09 KB

README.md

File metadata and controls

36 lines (26 loc) · 1.09 KB

Pygame_Snake

Using Pygame to recreate snake following a tutorial by Patrick Loeber

Dependency Installation

Anaconda

Follow the instructions to install Anaconda:

Anaconda Environment

  1. Create a conda environment conda create -n pygame_env
  2. Activate the conda environment conda activate pygame_env
  3. Install pygame using pip pip install pygame

Setting Up Enviornment Using YML File

YML file was exported on a Macbook M2 Chip

  1. Download yml file from repository
  2. Create environment using YML file conda env create --file pygame_env.yml
  3. Activate the conda environment conda activate pygame_env

If the YML file is not compatiable with your machine follow the prior instructions.

Running file/game

python "Name_Game_File".py