From 58d019df0a5c493c805528a3f8748ddf186f423e Mon Sep 17 00:00:00 2001 From: gckopper <41166074+gckopper@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:23:54 -0300 Subject: [PATCH] documenting the build script --- graphs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphs/README.md b/graphs/README.md index 66a5479..287ff39 100644 --- a/graphs/README.md +++ b/graphs/README.md @@ -15,4 +15,4 @@ you'll need to these steps: - Initiate a python virtual environment (optional, but recommend) with `python3 -m venv venv` (linux, mac) or `py -m venv venv` (windows) - Activate the virtual environment `source venv/bin/activate` (linux, mac) `.\venv\bin\activate.bat` (windows) - Install all dependencies with `pip install -r requirements.txt` -- Build the desired chart with `python3 {filename}` (linux, mac) `py {filename}` (windows). All the files ending in `.py` inside the `graphs` folder are charts +- Build the desired chart with `python3 {filename}` (linux, mac) `py {filename}` (windows). Or build all charts at once using the `build.py` script. All the files ending in `.py` (except `build.py`) inside the `graphs` folder are charts.