diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-09-14 18:35:09 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-09-14 18:35:09 +0200 |
commit | 68cc7d635b25ca08da957541794df6a1cda2ef95 (patch) | |
tree | c143b79fcc5e304e252ec285f169d19f58374967 | |
parent | 8bebbd31810b96e4386a265f8ee4c4a7c1e8cd56 (diff) | |
download | mknet-68cc7d635b25ca08da957541794df6a1cda2ef95.tar.gz mknet-68cc7d635b25ca08da957541794df6a1cda2ef95.zip |
More doc
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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) |