You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A short summary of what you would like to see in BIBSnet.
Look into common WARNINGs that pop up for folks when running BIBSNet. these shouldn't impact anything, but might be good to either address, suppress the warning, add logging to explain it can be safely ignored, etc:
"uname": executable file not found in $PATH
Matplotlib created a temporary config/cache directory at /tmp/matplotlib-6yivpubv because the default path (/users/2/kweldon/.config/matplotlib) is not a writable directory; it is highly recommended to set the MPLCONFIGDIR environment variable to a writable directory, in particular to speed up the import of Matplotlib and to better support multiprocessing.
Do you have any interest in helping implement the feature?
Yes!
Add any additional information or context about the request here.
No response
The text was updated successfully, but these errors were encountered:
Naively I would think that for the Matplotlib warning, it's better to just explicitly set the config directory within the container, i.e. BIBSnet shouldn't be writing to folders outside the container anyways (unless we specifically mount them).
Something like this ?
frompathlibimportPathimportosPath.mkdir(Path.home() /"bibsnet"/"configs") # might need to adjust the permissions via `mode` argumentos.environ['MPLCONFIGDIR'] =Path.home() /"bibsnet"/"configs"
A short summary of what you would like to see in BIBSnet.
Look into common WARNINGs that pop up for folks when running BIBSNet. these shouldn't impact anything, but might be good to either address, suppress the warning, add logging to explain it can be safely ignored, etc:
Do you have any interest in helping implement the feature?
Yes!
Add any additional information or context about the request here.
No response
The text was updated successfully, but these errors were encountered: