Skip to content

urda/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code

https://adventofcode.com/

Environment Setup

The following instructions are designed around pyenv, pyenv-virtualenv.

Prepare the base python:

pyenv install 3.12.0

Create a python virtual environment:

pyenv virtualenv 3.12.0 advent

Switch to it after creation:

pyenv shell advent

Go ahead and update pip:

pip install --upgrade pip

And install the development requirements:

pip install -r requirements-dev.txt

Running the "project"

You can launch the advent-of-code project with:

make run

Running the "utilities"

You can launch the project utilities with:

make utils