##// END OF EJS Templates
document how to select browser for notebook
Paul Ivanov -
Show More
@@ -282,7 +282,20 b' class NotebookApp(BaseIPythonApplication):'
282 )
282 )
283
283
284 open_browser = Bool(True, config=True,
284 open_browser = Bool(True, config=True,
285 help="Whether to open in a browser after starting.")
285 help="""Whether to open in a browser after starting.
286 The specific browser used is platform dependent and
287 determined by the python standard library `webbrowser`
288 module, which allows setting of the BROWSER
289 environment variable to override it. As a one-time
290 change, you can start the notebook using:
291
292 BROWSER=firefox ipython notebook
293
294 To make the change more permanent, modify your
295 ~/.bashrc you can include a line like the following:
296
297 export BROWSER=firefox
298 """)
286
299
287 read_only = Bool(False, config=True,
300 read_only = Bool(False, config=True,
288 help="Whether to prevent editing/execution of notebooks."
301 help="Whether to prevent editing/execution of notebooks."
General Comments 0
You need to be logged in to leave comments. Login now