diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-12 06:56:03 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-12 06:56:03 +0100 |
commit | b4195baae3b36bd997a97d24fd5e0ab38dcd5595 (patch) | |
tree | eca4ea75f16be761da19409b83a45ce88dd1b0c5 /README.rst | |
parent | c93fc1b9a11c96a4554ec47029bf085597fdef60 (diff) |
Add libaoc
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |