Any guesses on how to specify a specific ipython config from qtconsole?
Without qtconsole:
ipython --profile=my_profile_name
Where my_profile_name is a profile name under your global ipython directory, for ipython kernel options. This lets you specify ipython-specific things, like modules to import on load.
With qtconsole:
jupyter console --config=/./jupyter_qtconsole_config.py
Where you can specify a specific config file to setup general non-ipython-specific qtconsole settings, like font size.
How can you specify set the ipython profile (ideally point it to a file, but may be limited to specifying a global profile name) from qtconsole? ie add the ---profile tag to jupyter qtconsole? Im this link: https://groups.google.com/forum/#!topic/jupyter/kzEws9ZeCFE Matthias mentions specifying a kernel, but that seems overkill.
You can specify profile in a file called 'ipython_kernel_config.py'; perhaps the solution lies in launching qtconsole with --config=jupyter_qtconsole_config.py, and pointing in this file to a custom ipython_kernel_config.py that points to a profile name; not sure how to point to the kernel config file, and no obvious way in the jupyter config docs.