There is not much documentation on the web about the ipy_user_conf.py file other than at: (http://ipython.org/ipython-doc/rel-0.10.2/html/config/customization.html#ipythonrc).
For some reason my config file isn't importing modules or creating functions like it should.
import IPython.ipapi
ip = IPython.ipapi.get()
import os
import sys
import matplotlib as mpl
from matplotlib import pyplot as plt
# You probably want to uncomment this if you did %upgrade -nolegacy
# import ipy_defaults
def line(line):
exec(In[line])
## END line
def main():
ip.defalias('gedit', 'gedit %s')
ip.defalias('more', 'more %s')
print "starting iPython... ipy_user_conf file has been imported!"
ip.expose_magic("line",line)
the result is that it runs the line that says "starting IPython... ipy_user_conf file has been imported!", but when I run dir() it doesn't show any of the modules that I had selected to import.
Here is the output when running dir() in ipython:
In [1]: dir()
Out[1]:
['In',
'Out',
'_',
'__',
'__IP',
'___',
'__builtins__',
'__name__',
'_dh',
'_i',
'_i1',
'_ih',
'_ii',
'_iii',
'_ip',
'_oh',
'_sh',
'help']
Any help would be appreciated! - Peter
