pip install --upgrade pip 更新pip
pip install jupyter 安装jupyter
sudo pip3 install jupyter 安装jupyter
启动jupyter-notebook
windows下命令行输入命令:jupyter notebook
ubuntu18.04下启动命令:jupyter-notebook
Anaconda是一个集成环境(基于机器学习和数据分析的开发环境)
基于浏览器的一种可视化开发工具:jupyter notebook
可以在指定目录的终端中录入jupyter notebook指令,然后启动服务。
cell是分为不同模式的:
Code:编写python代码
markDown:编写笔记
快捷键:
添加cell:a,b
删除cell:x
执行:shift+enter
tab:
切换cell的模式:
m
y
打开帮助文档:shift+tab
原文:https://www.cnblogs.com/wanjunbook/p/12498003.html