jupyter notebook的安装和启动

jupyter notebook的安装和启动

jupyter notebook是一款网页版的Python编辑器组件,下面介绍在Windows系统下的jupyter notebook的安装和启动方法。

1.打开Windows命令行窗口cmd

2.查看已安装组件:python -m pip list

3.jupyter notebook安装命令:pip install jupyter notebook(如果第一次执行不成功,则多次执行尝试)

如果安装失败,报错提示给出解决办法,去error给的网址下载Visual C++ 9.0,然后安装,安装好之后再次执行pip install jupyter notebook,安装成功。

jupyter notebook的安装和启动

4.jupyter notebook启动命令:jupyter notebook

jupyter notebook的安装和启动

5.启动之后,会自动启动jupyter notebook的浏览器页面

jupyter notebook的安装和启动

6.点击新建按钮下的Python3,打开编辑器页面,可以进行Python代码编写了

jupyter notebook的安装和启动