Jupyter NoteBook介绍,以及树莓派4b安装教程

一、什么是Jupyter Notebook?

Jupyter Notebook是基于控制台的方法扩展到交互式计算的新方向,提供了适用于捕获整个计算过程的基于Web的应用程序:开发,记录和执行代码,以及传达结果;Jupyter Notebook结合了两个组件:A web application and Notebook documents。——Jupyter Notebook官方介绍

二、树莓派安装Jupyter Notebook

1.安装指令

sudo pip3 install jupyter
2.生成配置文件

jupyter notebook --generate-config
3.设置jupyter notebook的访问密码

jupyter notebook password xxxxxxxxx

4.启动jupyter notebook,进行数据分析

jupyter notebook 数据分析.ipynb

运行界面如下

猜你喜欢

转载自blog.csdn.net/wz_coming/article/details/112258380