4 examples of 'jupyter notebook change directory' in Python

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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
26@staticmethod
27def _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
36def current(self):
37 return self._cwd
99@observe('work_dir')
100def _work_dir_changed(self, change):
101 self.work_dir = unicode_type(expand_path(change['new']))
131@property
132def notebook_dir(self):
133 return self.root_dir / 'notebook'

Related snippets