Ipython 在干净的Ubuntu 14.04 LTS上安装Jupyter笔记本失败

Ipython 在干净的Ubuntu 14.04 LTS上安装Jupyter笔记本失败,ipython,ubuntu-14.04,ipython-notebook,jupyter,Ipython,Ubuntu 14.04,Ipython Notebook,Jupyter,如何安装Jupyter笔记本的开发版? $ 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/ipyt

如何安装Jupyter笔记本的开发版?

$ 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)

自从Jupyter发布以来,随着事情的发展,您现在是否必须从Jupyter repo进行安装?下一个版本将不仅适用于ipython,也适用于其他内核,如julia和bash等


有可能添加Julia或R内核吗?@Jean Pat您可以在几种语言中看到这一点。Jupyter可以支持多种内核,因此不仅Ipython,还有Bash、Julia或R。你可以在那里看到笔记本。
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 .