aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2021-12-12 06:56:03 +0100
committerThomas Voss <thomasvoss@live.com> 2021-12-12 06:56:03 +0100
commitb4195baae3b36bd997a97d24fd5e0ab38dcd5595 (patch)
treeeca4ea75f16be761da19409b83a45ce88dd1b0c5 /README.rst
parentc93fc1b9a11c96a4554ec47029bf085597fdef60 (diff)
Add libaoc
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index de11e31..7b9e695 100644
--- a/README.rst
+++ b/README.rst
@@ -18,3 +18,17 @@ the "puzzles.ext" file as it's required to get the "puzzle-1.ext" and "puzzle-2.
actually run properly.
.. _Advent of Code: https://adventofcode.com
+
+
+Running Code
+------------
+
+Some of the solutions in this repo make use of ``libaoc``. In order to run these solutions you need
+to add the directory of the library to the ``PYTHONPATH`` environment variable. In other words,
+instead of doing this::
+
+ $ ./puzzle-1.py
+
+You must do this::
+
+ $ PYTHONPATH=../../ ./puzzle-1.py