安装python的jupyter notebook工具

时间:2020-12-27 22:51:11

jupyter notebook是一个通过网页运行python的工具

 

支持分段的python运行,并能直观的查看结果

支持多python环境运行,需要加装(conda)

安装python的jupyter notebook工具

 

安装步骤

1.安装python3,并设置环境变量 

2.安装jupyter

pip3 install --upgrade pip
pip3 install jupyter

 

3.启动

命令行下运行,进行启动,会自动打开web控制台,默认端口是8888

jupyter notebook
改变端口:jupyter notebook --port 9999


默认的路径是命令行启动的路径
安装python的jupyter notebook工具