We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef34efc commit e296836Copy full SHA for e296836
lib/iruby/jupyter.rb
@@ -2,8 +2,11 @@ module IRuby
2
module Jupyter
3
class << self
4
# User's default kernelspec directory is described here:
5
- # https://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html
+ # https://docs.jupyter.org/en/latest/use/jupyter-directories.html
6
def default_data_dir
7
+ data_dir = ENV["JUPYTER_DATA_DIR"]
8
+ return data_dir if data_dir
9
+
10
case
11
when windows?
12
appdata = windows_user_appdata
0 commit comments