How do I update my PromptManager settings for IPyt

2019-04-20 10:58发布

问题:

The lines

# Output prompt. '\#' will be transformed to the prompt number
c.PromptManager.out_template = '{color.Green}Out[{count}]{color.Green} : {color.LightGray}'

# Continuation prompt.
c.PromptManager.in2_template = '{color.Yellow}   .\\D.{color.Green} : {color.LightGray}'

# If True (default), each prompt will be right-aligned with the preceding one.
c.PromptManager.justify = True

# Input prompt.  '\#' will be transformed to the prompt number
c.PromptManager.in_template = '{color.Green}In [{count}]{color.LightGreen} : {color.DarkGray}'

in my ipython_config.py give

usr/local/lib/python2.7/site-packages/IPython/core/interactiveshell.py:440: UserWarning: As of IPython 5.0 `PromptManager` config will have no effect and has been replaced by TerminalInteractiveShell.prompts_class
  warn('As of IPython 5.0 `PromptManager` config will have no effect'

but replacing PromptManager with TerminalInteractiveShell.prompts_class has no effect.

How do I update my PromptManager settings for IPython 5.0?