python - startup files inheritance in ipython -
suppose have ipython profiles , b. both define own configuration files (a/ipython_config.py
, b/ipython_config.py
) , startup files (a/startup/startup.py
, b/startup/startup.py
). want b inherit stuff, in b/ipython_config.py
include following line:
load_subconfig('ipython_config.py', profile='a')
that's fine. startup files part couldn't find useful hint. know how it?
there's no official support running startup files profile, can make startup script find files in profile_a/startup/
, execute them.
Comments
Post a Comment