From 74b3e50984bb5b017e7b0dba99e305908e33b512 Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Wed, 1 Dec 2021 19:05:14 -0500 Subject: [PATCH] Adding Installation notes --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index e2fa927..f430a18 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,17 @@ My solutions for [Advent of Code](https://adventofcode.com) Hopefully I keep up with it +# Installation +``` +git clone https://gitea.ryanreed.net:3000/ryanreed/2021-advent-of-code.git +cd 2021-advent-of-code +python3 -m venv .venv +. .venv/bin/activate +pip install --upgrade pip +pip install -r requirements.text +``` + + # Testing/Verifying Solutions Each day will include a pytest script that uses examples from the day.