在清洁的Ubuntu 14.04 LTS上安装Jupyter Notebook失败

4

我该如何安装Jupyter Notebook的开发版本?

$ wget https://bootstrap.pypa.io/get-pip.py
$ sudo python get-pip.py
$ sudo pip install virtualenv
$ cd ~
$ virtualenv local/python/jupyter
$ source local/python/jupyter/bin/activate
$ git clone --recursive https://github.com/ipython/ipython.git
$ cd ipython
$ pip install -e ".[notebook]"

Could not find a version that satisfies the requirement jupyter-notebook (from ipython==4.0.0.dev0) (from versions: )
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external jupyter-notebook to allow).
No matching distribution found for jupyter-notebook (from ipython==4.0.0.dev0)
1个回答

3

由于Jupyter已经发布,可能现在需要从Jupyter存储库安装。未来的版本将不仅包括IPython,还会包括其他内核,如Julia和Bash等。

来自 https://github.com/jupyter/jupyter_notebook

Create a virtual env (ie jupyter-dev)
ensure that you have node/npm installed (ie brew install node on OS X)
Clone this repo and cd into it
pip install -r requirements.txt
pip install -e .

能否添加Julia或R内核? - Jean-Pat
@Jean-Pat,你可以看一下这个网站https://try.jupyter.org/,它支持多种语言。Jupyter可以支持多种内核,不仅仅是Ipython,还有Bash、Julia或R等。你可以在那里看到笔记本。 - Koen

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接