I am using Python with kdb +. To do this, I use PyQ , which brings Python and kdb + / Q to the same process and allows both languages to work on the same dataset / memory.
After some effort, I can load Python into the kdb + / Q process on OS X using the instructions here , i.e.
q python.q [-<python option>@ <python option value>]* python-script
This is all good, but I would like to use the above command as an interpreter in IPython (Notebook for research, etc.).
So how do you change the interpreter in IPython? I saw the FAQ here , but creating a virtual environment doesn't seem like a solution. Ideally, I would create a profile for IPython.
Many thanks.
source
share