david78
david78

Reputation: 183

In Pycharm, 'Python Console" prompter was '>>>', but some how it changed to 'In[2]". Why does it happen?

As in the title, in the python console in PyCharm, the prompter is changed from >>> to In[2].

I do not understand what changed it, and how to get back to >>>.

enter image description here

Upvotes: 1

Views: 307

Answers (1)

Pavel Karateev
Pavel Karateev

Reputation: 8590

You have IPython installed. It changes the prompt. Either uninstall it or disable Preferences | Build, Execution, Deployment | Console | Use IPython if available in PyCharm.

Upvotes: 4

Related Questions