You can change the directory where Ipython stores its configuration files by [from here] changing the IPYTHONDIR environment variable. The default is ~/.ipython for linux and /_ipython for windows.
Put your personal Ipython fetishes (like yellow screen with red text - I don't want to know details) in the ipy_user_conf.py file found in the configuration directory.
In order to see the options available to you, in a python shell do the following
import IPython.ipapi
ip = IPython.ipapi.get()
o = ip.options
o
Changing colors [here]
Put your personal Ipython fetishes (like yellow screen with red text - I don't want to know details) in the ipy_user_conf.py file found in the configuration directory.
In order to see the options available to you, in a python shell do the following
import IPython.ipapi
ip = IPython.ipapi.get()
o = ip.options
o
Changing colors [here]
Comments
Post a Comment