jupyter

Jupyter Notebook(此前被称为 IPython notebook)是一个交互式笔记本,支持运行 40 多种编程语言。
Jupyter Notebook 的本质是一个 Web 应用程序,便于创建和共享文学化程序文档,支持实时代码,数学方程,可视化和 markdown。 用途包括:数据清理和转换,数值模拟,统计建模,机器学习等等



官网:https://github.com/jupyter?language=python



mac 安装:
pip install jupyter



使用:
$jupyter notebook



此时浏览器中会弹出notebook窗口(http://localhost:8888/tree)



问题:
出现404



修改配置文件端口



$jupyter notebook –generate-config –allow-root



/Users/didi/.jupyter/jupyter_notebook_config.py



$vi /Users/didi/.jupyter/jupyter_notebook_config.py



把端口改为8866



0 active kernels



The Jupyter Notebook is running at: http://localhost:8866/?token=2d6



成功



Files下面列出了当前用户目录下所有的文件,结合右上角的upload和new你可以方便地进行文件操作。你先选择一个目录,在该目录下,new一个python2,这样当前目录即会出现一个“.ipynb”文件,同时,浏览器会弹新的标签页让你编辑该“.ipynb”文件。



jupyter_use



在该界面下,每输入一行代码Enter后不会运行当前代码,而是换行让你输入下一行代码,当你键入Shift + Enter后,将运行刚刚你输入的那几行代码。



jupyter_use



还可以new一个Terminal,如下图所示。



jupyter_use



mac 截图:
下载snipmac



Category deep_learning