Files
jupyter_contrib_nbextensions/config/ipython_notebook_config.py
T
2014-12-21 13:35:11 +01:00

19 lines
496 B
Python

# Configuration file for ipython-notebook.
from IPython.utils.path import get_ipython_dir
import os
import sys
ipythondir = get_ipython_dir()
extensions = os.path.join(ipythondir,'extensions')
sys.path.append( extensions )
c = get_config()
c.NotebookApp.open_browser = False
#c.IPKernelApp.ip = '127.0.0.1'
#c.FileNotebookManager.notebook_dir = 'i:\\notebook'
c.NotebookApp.server_extensions = [ 'nbextensions' ]
c.NotebookApp.extra_template_paths = [os.path.join(ipythondir,'templates') ]