jupyter notebook安装和界面

て烟熏妆下的殇ゞ 提交于 2020-03-12 03:58:39

@Python 的 学习记录 jupyter notebook 安装

Python 的 jupyter notebook 安装和界面

jupyter notebook链接: link.

anaconda下载link

  1. 安装python 推荐anaconda3
  2. 更新pip或pip3
  3. 使用pip或pip3 安装jupyter notebook

安装前提

安装Jupyter Notebook的前提是需要安装了Python(3.3版本及以上,或2.7版本)。

更新pip

#Python 3.x
pip3 install --upgrade pip
#Python 2.x
pip install --upgrade pip

安装jupyter notebook

#Python 3.x
pip3 install jupyter
#Python 2.x
pip install jupyter

下载慢请使用清华源

#Python 3.x
pip3 install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
#Python 2.x
pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple

运行jupyter

通常直接在开始菜单的anaconda的文件夹就能找到jupyter

如果找不到,可以从cmd窗口输入jupyter notebook启动

#启动命令
jupyter notebook

启动后长这样
在这里插入图片描述
通过new新建一个python3脚本
在这里插入图片描述
jupyter notebook的脚本后缀是 .ipynb 格式的
脚本界面长这样
在这里插入图片描述
可以通过file里面的download来导出成其他格式
 可以通过file里面的download来导出成其他格式
引用
[1]: https://jupyter.org/install
[2]: https://blog.csdn.net/LEE18254290736/article/details/88343568
[3]: https://www.jianshu.com/p/91365f343585

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!