-
-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use standard Linux locations for config and cache #884
Comments
Thank you for the pointers, this makes total sense. So far, we have agreed to keep the config and cache consistent across languages, so I'd like to hear @giuseppec and @janvanrijn's opinion for R and Java. |
@mllg @berndbischl @giuseppec this is likely important for the R package as well. 👆 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently OpenML package creates
.openml
in home directory. These days this is not a nice behavior, because there is a standard where things should go.XDG_CONFIG_HOME
environment variable to determine base config directory.XDG_CACHE_HOME
environment variable to determine base cache directory.See more practical information and details here.
So, by default, config should go into
~/.config/openml
and cache into~/.cache/openml
.The text was updated successfully, but these errors were encountered: