This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.

Setup Jupyter Notebook Server

Words
31
Reading
1 min
Listen
Play
9y

OS: Raspbian

1.Install Jupyter Notebook

pip install -U 'ipython[notebook]'

2.Create configuration file

jupyter notebook --generate-config

3.Alter configuration file

c.NotebookApp.open_brower = False #don't opren brower when opren Jupyter Notebook
c.NotebookApp.ip = '0.0.0.0' #listen network
c.NotebookApp.password = u'' #disable password
c.NotebookApp.token = '' #disable token

4.don't kill Jupyter Notebook after user logout

nohup jupyter notebook
  1. open: x.x.x.x:8080 in brower. x.x.x.x is the IP address of your server

Quelle: https://python.freelycode.com/contribution/detail/846