Getting rid of welcome message in Spyder Python IDE (Anaconda)

1

I am on Windows 7 64bit.

Is there a way to customize the welcome message in the Spyder IDE IPython console? (I am using the Anaconda distribution.) Preferably, starting with a plain: In [1]:

enter image description here

blackened

Posted 2015-11-17T09:36:51.010

Reputation: 229

Answers

0

You'll need to change the command line that launches the console. I'm not sure what Sypder uses. Looks like Ipython in the screenshot. For ipython qtconsole:

ipython qtconsole --no-banner

For jupyter qtconsole:

jupyter qtconsole --no-banner

For a plain cmd console:

ipython console

or

ipython --no-banner

BKay

Posted 2015-11-17T09:36:51.010

Reputation: 101