Python在线编辑器jupyter的简单安装与使用

安装Python

下载好python.exe后点击打开安装
注:记得勾选下面的配置环境变量框框

使用pip安装jupyter

命令行输入:pip install jupyter
安装成功后在包目录有jupyter.exe文件
Python在线编辑器jupyter的简单安装与使用

启动jupyter

命令行输入:jupyter notebook

启动成功

Python在线编辑器jupyter的简单安装与使用

开始编写程序

New ->python 3
新建一个Python文件

安装第三方模块

!pip install name

Python在线编辑器jupyter的简单安装与使用

运行

运行:Ctrl+Enter
运行且在下一行插入代码块:Shift+Enter
Python在线编辑器jupyter的简单安装与使用