April 2018
Beginner
238 pages
7h 13m
English
The install does not automatically create a configuration file. You must run the following command to generate a configuration with defaults:
dan@cluster-jupyter-m:~$ jupyter notebook --generate-configWriting default config to: /home/dan/.jupyter/jupyter_notebook_config.py
You then use a text editor to add some settings to the file (I used vi). Enter the external port number from the preceding VM:
c = get_config()c.NotebookApp.ip = '*'c.NotebookApp.open_browser = Falsec.NotebookApp.port = <port number #8123
At this point, our configuration is all set.