因此,我是第一次安装IPython(Windows 7 64位)。请按照此处的说明进行操作:

IPython Installation

下载并安装Anaconda 1.9.1,然后给出命令

conda update conda
conda update ipython

(以管理员身份运行命令行终端)

安装完成,确定,我尝试从此处打开示例.ipynb笔记本文件。

Example IPython Notebook File

但我收到以下错误;
Error loading notebook
Unreadable Notebook: Notebook does not appear to be JSON: '\n\n

我已经尝试了IPython Example Notebooks的许多其他示例笔记本,但都无法打开并给出相同的错误!

有人知道这里有什么问题以及如何解决吗?

最佳答案

根据评论:



很明显,您正在下载整个网页,而不是笔记本。按照该过程并在文本编辑器中打开生成的文件,我得到如下信息:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title></title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0">


    <meta name="description" content="">



    <meta name="author" content="">


    <!--NEW RELIC Start Perf Measurement-->

    <!--NREND-->

    <!-- Le styles -->
    <!--<link href="/static/css/bootstrap.css" rel="stylesheet">-->
    ...

您需要做的是跟随每个链接到it's nbviewer rendering,然后单击下载链接。

或者,我只是从github下载或克隆存储库,更改为结果目录,然后在此处启动笔记本服务器。

关于IPython笔记本不可读,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22156147/

10-13 02:11