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
Congratulations @fanpengcheng! You have received a personal award!
1 Year on Steemit
Click on the badge to view your Board of Honor.
Do not miss the last post from @steemitboard:
SteemitBoard World Cup Contest - Semi Finals - Day 1
Participate in the SteemitBoard World Cup Contest!
Collect World Cup badges and win free SBD
Support the Gold Sponsors of the contest: @good-karma and @lukestokes
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit