Dependencies folder #3
Answered
by
Tremeschin
charloulexqs
asked this question in
Q&A
-
Hi, sorry to bother but what is the Dependencies installation folder, cause i have two hard drive i was wondering if it's possible to choose on which one i want them to be saved? |
Beta Was this translation helpful? Give feedback.
Answered by
Tremeschin
Sep 20, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, thanks for reaching out!
Python dependencies
The Python dependencies are managed by Poetry and by default installed on poetry's cache directory, I know they get somewhat big but they are configurable with I think
poetry config cache-dir /path/to/cache
or setting the environment variablePOETRY_CACHE_DIR=/path/to/cache (python command)
User data
User generated content and caching is currently saved on the "Data" directory based on your OS defined by Python appdirs package, this might change in the future and be more configurable, it's not ideal writing cache (the depth maps to, for example,
~/.local/share/*
directory or%AppData%/Local/*
), I'm thinking on some local .toml configurab…