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
Copy file name to clipboardExpand all lines: jupyter_core/command.py
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -231,6 +231,15 @@ def main():
231
231
ifargs.debug:
232
232
env=os.environ
233
233
234
+
ifpaths.use_platform_dirs():
235
+
print(
236
+
"JUPYTER_PLATFORM_DIRS is set to a true value, so we use platformdirs to find platform-specific directories"
237
+
)
238
+
else:
239
+
print(
240
+
"JUPYTER_PLATFORM_DIRS is set to a false value, or is not set, so we use hardcoded legacy paths for platform-specific directories"
241
+
)
242
+
234
243
ifpaths.prefer_environment_over_user():
235
244
print(
236
245
"JUPYTER_PREFER_ENV_PATH is set to a true value, or JUPYTER_PREFER_ENV_PATH is not set and we detected a virtual environment, making the environment-level path preferred over the user-level path for data and config"
0 commit comments