Is there any convention or configuration setting for how to start IPython
shell? For example, when I start IPython, I almost always start it with pylab --inline
. One approach is to create an alias, such as alias ipython="ipython --pylab inline"
. However, I think it's impossible to start the shell with different options (other than inline
option) once I decide to create and use the alias.
So is it feasible to always start the shell with pylab=inline
option, but still to toggle it off whenever I don't need it (or more correctly, whenever I want to avoid it)?
(Don't suggest to create an alias with different names, such as ipy
or ipyWithPylab
, please.)
Thanks.