没有安装ipython notebook 后看见.ipynb文件直接手足无措了

一、安装ipython notebook

  使用命令 pip ipython [all] 为所有用户安装 ipython notebook

  最后安装了这么多:  

Successfully installed MarkupSafe-0.23 Sphinx-1.4.5 alabaster-0.7.8 babel-2.3.4 backports.shutil-get-terminal-size-1.0.0 colorama-0.3.7 configparser-3.5.0 decorator-4.0.10 docutils-0.12 entrypoints-0.2.2 functools32-3.2.3.post2 futures-3.0.5 imagesize-0.7.1 ipykernel-4.3.1 
ipyparallel-5.1.1 ipython-5.0.0 ipython-genutils-0.1.0 ipywidgets-5.2.2 jinja2-2.8 jsonschema-2.5.1 jupyter-client-4.3.0
jupyter-core-4.1.0 mistune-0.7.3 nbconvert-4.2.0 nbformat-4.0.1 nose-1.3.7 notebook-4.2.1 pathlib2-2.1.0 pickleshare-0.7.3
prompt-toolkit-1.0.3 pygments-2.1.3 pyzmq-15.3.0 qtconsole-4.2.1 requests-2.10.0 simplegeneric-0.8.1 snowballstemmer-1.2.1
testpath-0.3 traitlets-4.2.2 wcwidth-0.1.7 widgetsnbextension-1.2.6 win-unicode-console-0.5

  有疑问可以访问:http://ipython.org/install.html

二、运行Ipython NoteBook

  $ipython notebook

C:\Users\Plain>ipython notebook
[TerminalIPythonApp] WARNING | Subcommand `ipython notebook` is deprecated and will be removed in future versions.
[TerminalIPythonApp] WARNING | You likely want to use `jupyter notebook` in thefuture
[I 23:29:28.940 NotebookApp] Writing notebook server cookie secret to C:\Users\Plain\AppData\Roaming\jupyter\runtime\notebook_cookie_secret
[I 23:29:30.651 NotebookApp] Serving notebooks from local directory: C:\Users\Plain
[I 23:29:30.651 NotebookApp] 0 active kernels
[I 23:29:30.653 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/
[I 23:29:30.654 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

  很有趣,告诉我们,未来要使用:jupyter notebook 来运行Ipython NoteBook

  然后是一些cookie的存放位置之类的

--------------------------2016-7-25 23:32:56--

    source:

  

.ipynb文件 与ipython notebook的更多相关文章

  1. ipython notebook 如何打开.ipynb文件?

    标签: pythontensorflow 2017-03-29 14:17 235人阅读 评论(0) 收藏 举报  分类: TensorFlow(13)  转自:https://www.zhihu.c ...

  2. Ipython Notebook ipynb文件转化为Python脚本

    欢迎关注博主主页,学习python视频资源 方法1. pycharm可以打开 方法2 https://jingyan.baidu.com/article/19192ad8edc736e53e57072 ...

  3. 向IPython Notebook中导入.py文件

    IPython Notebook使用起来简洁方便,但是有时候如果需要导入一个现有的.py文件,则需要注意选择导入的方法以达到不同的效果.目前遇到3种方法. (1) 将文件保存为.ipynb格式,直接拖 ...

  4. Jupyter notebook中的.ipynb文件转换成python的.py文件

    转自:https://blog.csdn.net/wyr_rise/article/details/82656555 Jupyter notebook中.py与.ipynb文件的import问题   ...

  5. 简单python脚本,将jupter notebook的ipynb文件转为pdf(包含中文)

    直接执行的python代码ipynb2pdf.py 主要思路.将ipynb文件转成tex文件,然后使用latex编译成pdf.由于latex默认转换不显示中文,需要向tex文件中添加相关中文包. 依赖 ...

  6. ipython notebook设置工作路径和自动保存.py文件 ipython_notebook_config.py

    在安装完Anaconda,选择了配置环境变量后,打开cmd命令行 1. 打开命令行, 键入 ipython profile create 2. 键入 , 根据这个地址, 打开profile所在的文件夹 ...

  7. [搬砖]Pycharm中启动IPython notebook失败提示load_entry_point ImportError: Entry point ('console_scripts', 'ipython') not found的解决方法

    前提:直接运行ipython正常,“which -a ipython”命令显示也只有一个ipython存在,在ipynb文件中点运行启动notebook时提示错误类似如下: Traceback (mo ...

  8. 安装ipython notebook

    从http://cs231n.github.io/assignments2016/assignment1/开始说起,因为要学习cs231n课程,需要安装ipython notebook,原本电脑中安装 ...

  9. ipython notebook使用教程

    在一次师兄(师兄博客地址)的例会汇报中,介绍了ipython notebook,当时觉得很酷炫,渐渐自己使用的时候才发现真的很强大.抽空整理下,找了些资料进行补充,并挨个进行了实现,留个笔记,也欢迎喜 ...

随机推荐

  1. Android MP3录音实现

    给APP做语音功能,必须考虑到IOS和Android平台的通用性.wav录音质量高,文件太大,AAC和AMR格式在IOS平台却不支持,所以采用libmp3lame把AudioRecord音频流直接转换 ...

  2. css公共样式

    /* ==================================================================== @ set browser style ======== ...

  3. C#编程之委托与事件四(二)【转】

    C#编程之委托与事件(二)       我在上一篇文章(C#编程之委托与事件(一) )中通过示例结合的方法介绍了委托,在本文中,我同样以代码示例的方式来介绍C#里的事件机制. 二.事件   1.了解概 ...

  4. iOS下Html页面中input获取焦点弹出键盘时挡住input解决方案—scrollIntoView()

    问题描述 iOS系统下,移动web页面,inpu获取焦点弹出系统虚拟键盘时,偶尔会出现挡住input的情况,尽管概率不大,但是十分影响用户体验. 问题重现 原始页面:页面中有header.main.f ...

  5. linux 服务器对拷命令scp

    1.今天在进行linux下服务部署时由于重新部署的繁杂,所以我决定用scp命令在linux线上服务器(A)拷贝一份服务程序到现有的服务器(B)上: 具体的操作命令是:scp -r A_username ...

  6. lleetcode 292. Nim Game

    You are playing the following Nim Game with your friend: There is a heap of stones on the table, eac ...

  7. Java 并发性和多线程

    一.介绍 在过去单 CPU 时代,单任务在一个时间点只能执行单一程序.之后发展到多任务阶段,计算机能在同一时间点并行执行多任务或多进程.虽然并不是真正意义上的“同一时间点”,而是多个任务或进程共享一个 ...

  8. cocos2dx 3.x(TexturePacker进行图片加密)

    游戏开发过程中要涉及到大量的图片,使用TexturePacker可以把小图合成大图.这是我们使用最多的功能,但是TexturePacker还带有对图片加密的功能.之前还是对加密不慎了解,所以写下来分享 ...

  9. 三维高斯模型 opencv实现

    OnProbabilityModel() { int i; for(int x=0;x<workImg->height;x++) { for(int y=0;y<workImg-&g ...

  10. leetcode_222 Count Complete Tree Nodes

    题目: Given a complete binary tree, count the number of nodes. Definition of a complete binary tree fr ...