jupyter notebook

安装
conda install jupyter notebook
启动
nohup jupyter notebook &
生成配置文件
jupyter notebook --generate-config
安装代码补齐
conda install -c conda-forge jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

conda install -c conda-forge jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user

配置文件:

/home/tim/.jupyter/jupyter_notebook_config.py

c.NotebookApp.open_browser = False
c.NotebookApp.notebook_dir = '/home/tim/py'
c.NotebookApp.port = 8081
c.NotebookApp.ip='*'
c.ConnectionFileMixin.ip = '*'

posted @ 2019-11-13 13:38  TIMLONG  阅读(221)  评论(0编辑  收藏  举报