美文网首页
Jupyter notebook

Jupyter notebook

作者: FishSha | 来源:发表于2018-09-21 09:19 被阅读8次

安装

安装还是比较简单的

#优先建议pip3安装
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
#其次也可以使用pip
python -m pip install --upgrade pip
python -m pip install jupyter

启动

jupyter notebook

配置

初始化配置文件

jupyter notebook --generate-config

修改配置

配置文件目录

/Users/user/.jupyter/jupyter_notebook_config.py
#登录密码,默认没有密码,所以每次启动服务器后都会产生一个随机数token,配置了密码后就不用每次使用随机数token了 
c.NotebookApp.password = ''
#服务的端口,用默认的8888即可
c.NotebookApp.port = 8888
#是否需要自动弹出浏览器,服务器端一般不需
c.NotebookApp.open_browser = False
#不设置的话就是启动命令所在的目录 
c.NotebookApp.notebook_dir = '/home/maoshuai/work'
其他可参考官网:http://jupyter.org/

相关文章

网友评论

      本文标题:Jupyter notebook

      本文链接:https://www.haomeiwen.com/subject/ignonftx.html