From 6afc1011c4e426126c6a7be8ce8687dcdf5e2cc0 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Sun, 10 May 2015 16:57:19 -0700 Subject: [PATCH] data_dir is not .ipython/kernel anymore. On OSX, items ~/Library/Jupyter/ which screw up where things find kernels and anyway is already at the beginning of the search paths lists. --- jupyter_notebook/notebookapp.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jupyter_notebook/notebookapp.py b/jupyter_notebook/notebookapp.py index 8c034ca7b..db218a4c1 100644 --- a/jupyter_notebook/notebookapp.py +++ b/jupyter_notebook/notebookapp.py @@ -788,10 +788,6 @@ class NotebookApp(JupyterApp): self.kernel_spec_manager = self.kernel_spec_manager_class( parent=self, ) - # FIXME: temporarily add .ipython/kernels to the kernel search path - self.kernel_spec_manager.kernel_dirs.append( - os.path.join(self.data_dir, 'kernels'), - ) self.kernel_manager = self.kernel_manager_class( parent=self, log=self.log,