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

1 に答える 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 .
于 2015-04-29T04:06:51.800 に答える