Summary of the part I was addicted to trying to change the setting because I could not access from other than local by default in IPython Notebook
Create a configuration file with the following command for the contents that came out after checking on the net,
$ ipython profile create nbserver
I was told to write the following settings, but the settings were not reflected properly
$HOME/.ipython/profile_nbserver/ipython_config.py
c.NotebookApp.ip = '*'
It seems that the version has changed and it seems that it is necessary to create settings with jupyter and write the settings there
$ jupyter notebook --generate-config
Since the IP setting is commented out around the 67th line, change it as follows
$HOME/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip = '*'
The settings are reflected when you start with the following
$ jupyter notebook
Recommended Posts