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
- 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