jupyter notebook是数据科学常用的一款工具,在深度学习里也有很多人用jupyter操作各种框架。
安装jupyter:conda install jupyter
在自己电脑上启动jupyter只需要命令行启动jupyter notebook
即可。
由于有时候我会使用服务器,服务器使用命令行操作,无法用浏览器弹窗,启动会相对麻烦一点:
jupyter notebook --no-browser --ip 0.0.0.0 --port=8888
安装jupyter_contrib_nbextensions来增加代码补全功能:
Jupyter 安装 nbextensions 插件
网友评论