Skip to content Skip to sidebar Skip to footer

Changing The Ipython Interpreter

I'm using Python with kdb+. To do this I'm using PyQ, which brings Python and kdb+/Q to the same process and allows both languages to operate on the same set of data/memory space.

Solution 1:

You can install the latest version of PyQ using the following pip command:

pip install -i https://pypi.enlnt.com --no-binary pyq pyq

This should install a pyq executable. To run IPython, do

pyq -mIPython

For more information about PyQ and IPython, see my presentation "Exploring KDB+ Data in IPython Notebooks".

Post a Comment for "Changing The Ipython Interpreter"