Hi all.<br>I am having problems with kernelmanager from evan's repo.<br><br>I am writing a simple code <br><br># -*- coding: utf-8 -*-<br>from kernelmanager import KernelManager<br>from session import Session<br>import zmq<br>

xreq_addr = ('127.0.0.1',5555)<br>sub_addr = ('127.0.0.1', 5556)<br>rep_addr = ('127.0.0.1', 5557)<br>context = zmq.Context()<br>session = Session()<br>km = KernelManager(xreq_addr, sub_addr, rep_addr,context,session)<br>

km.start_channels()<br>km.xreq_channel_class.execute("print 1")<br><br>and the error is <br><br>km.xreq_channel_class.execute(code)<br>TypeError: unbound method execute() must be called with XReqSocketChannel instance as first argument (got str instance instead)<br>

<br>how should I useĀ  kernelmanager ?<br><br>Thnk!<br><br><br><br>