色が見づらい.ひたすらに色が見づらい.辛い.
設定を変えました.OSはubuntuです.
参照はこちら
解決法
まず,下のコマンドを打ち込み,ipythonのconfig設定ファイルを生成し,編集画面に移る.
user@user:~$ cd ~
user@user:~$ ipython profile create
# できたよーというようなことが表示される
user@user:~$ emacs ~/.ipython/profile_default/ipython_config.py
次に該当のファイル内に
## Set the color scheme (NoColor, Neutral, Linux, or LightBG).
# c.InteractiveShell.colors = 'Neutral'
とあるので,
## Set the color scheme (NoColor, Neutral, Linux, or LightBG).
c.InteractiveShell.colors = 'Linux'
に変更し,保存.
これによって,次回以降ipythonの色が見やすくなる.