我尝试了this,但它无效。
ZeroMQ终于在OS X上安装了很多挫折。注意我必须这样做:
npm install zmq
在我的kernel.js
文件的主目录中,使用require()
找到它。
我必须使用
修改ipython_config.py
c.KernelManager.kernel_cmd = ["/usr/local/bin/node", "~/node-kernel/kernel.js", "{connection_file}"]
c.Session.key = b''
c.Session.keyfile = b''
我只是从kernel.js
的这一部分:
reply_socket.on('message',
function(data){
for(i in arguments){
console.log("[" + i + "]: " + arguments[i].toString());
}