Jupyter-notebook server
jupyter notebook --generate-configvi ~/.jupyter/jupyter_notebook_config.pyc.NotebookApp.ip='0.0.0.0' #Permit external computer to connect
c.NotebookApp.notebook_dir = '' #Local notebook visit directory
c.NotebookApp.open_browser = False # Upon start, will not auto open a browser
c.NotebookApp.port = 8888 #Specify port
c.NotebookApp.allow_origin = '*'#Allow visit from anywhere
jupyter notebook password



Last updated