LoginSignup
6
1

More than 5 years have passed since last update.

ipythonの色が見づらい

Last updated at Posted at 2019-03-25

色が見づらい.ひたすらに色が見づらい.辛い.
設定を変えました.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の色が見やすくなる.

6
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
1