jupyter notebook安装
jupyter notebook是一个比较非常好的web式编辑器,可以运行在window、mac、linux系统上。
首先确定安装了python,命令行中执行启动python
python
执行结果:
如果成功,说明安装过python。
然后在命令行执行jupyter安装命令:
pip install jupyter
pip会自动下载jupyter对应的依赖文件,然后安装完成。安装时间较长,请耐心等待,咖啡是等待的最好伴侣。
运行jupyter notebook
安装成功后,打开新的命令行,执行
jupyter notebook
然后jupyter会自动弹出浏览器打开http://localhost:8888/?token=....这样一个地址,这样jupyter就启动完成了。
端口根据系统占用端口情况,可能不一样