<msys2, Anaconda> Out[] が出ない時。
Anaconda
https://www.continuum.io/ のWindows
版を入れて、
msys2
のmintty
から、ipython
を呼び出した時、
Out[]
が出なかった。
[1:hage:~]>/c/Anaconda3/Script/ipython In [1]: 5 * 5 In [2]: 2 * 2 In [3]:
どうも、出力がどっかに飛んでいる気がしつつ、、、
はたとwinpty
を試したら大当たりだった。
[2:hage:~]>winpty /c/Anaconda3/Script/ipython Python 3.5.1 |Anaconda 2.4.1 (64-bit)| (default, Feb 16 2016, 09:49:46) [MSC v.1900 64 bit (AMD64)] Type "copyright", "credits" or "license" for more information. IPython 4.1.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: 5 * 5 Out[1]: 25 In [2]:
ぐー。よかったー。