Every line of 'jupyter notebook change directory' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
26 @staticmethod 27 def _init_jupyter(jupyter_path): 28 if not os.path.exists(jupyter_path): 29 jupyter_source_dir = os.path.join(parade.__path__[0], 'template', 'workspace', 'jupyter') 30 copytree(jupyter_source_dir, jupyter_path, IGNORE) 31 32 os.environ['JUPYTER_PATH'] = jupyter_path 33 os.environ['IPYTHONDIR'] = os.path.join(jupyter_path, 'ipython')
35 @property 36 def current(self): 37 return self._cwd
99 @observe('work_dir') 100 def _work_dir_changed(self, change): 101 self.work_dir = unicode_type(expand_path(change['new']))
131 @property 132 def notebook_dir(self): 133 return self.root_dir / 'notebook'