目次へ
最近になって Ipython の調子が良くないのでアップデートを行った。
Anaconda を使って Ipython のインストールを しているので、Ipython ホームページに載っている方法でアップデートできた。
conda update conda
conda update ipython ipython-notebook ipython-qtconsole
この2行のコマンドでアップデートできることは素晴らしいと思います。 ノートブックを開くと Ipython の表示が Jupyter になっていた。
IPython 3.1.0 -- An enhanced Interactive Python.
はじめのころと比較すると使い易くなりました。
最近作ったノートブックの例は次にあります。 GAP + Ipython notebook
ノートブック上で GAP( Groups, Algorithms, Programming ) を動かしています。
Install new package in anacona -Google group
パッケージを conda でインストールできない場合にどうするか? 対処法を見つけたのでここに書き止める。
Install new package in anacona
The same way you add any package:
try to install it with conda:
$ conda install pydelicious
if that fails, try searching conda:
$ conda search delicious
(note that I took the py off for that search, sometimes hard to know exactly what the name for a conda package is)
if that fails, try searching binstar:
$ binstar search delicious
(you may need to install the binstar package first...)
if it's not there, then give up an use pip:
$ pip install pydelicious
should work.
-Chris
Ipython 3.0 ( jupyter ) は Ipython 2 と大きく変わっている
Jupyther がすごい勢いでやってくる(IPython + Notebook + R)
先月末(2015/02/27)のIPython 3.0のリリースでIPython Notebookが大きく変わり、(まだ開発版ですが)Rとの連携もかなり楽になりました!というか今後はRだけでなく、Juliaや他の言語もカバーする方向に進むそうで、特定の言語に依存しない部分をJupyterという別プロジェクトでやっていくそうです。