From 68cc7d635b25ca08da957541794df6a1cda2ef95 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Wed, 14 Sep 2022 18:35:09 +0200 Subject: [PATCH] More doc --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 8111afb..25378da 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,18 @@ pip3 install --user . ( cd scenarios && pip3 install -r requirements.txt ) ``` +Sometimes, it is required to add manually your local python lib folder to the environment: + +```bash +export PYTHONPATH=$PYTHONPATH:$HOME/.local/lib/python3.10/site-packages/ +``` + +You can check that everything has been installed by running in a python REPL: + +``` +import garage_admin_sdk +``` + ## Run a test (Not yet implemented)