Results 255 comments of Nicolas Riesco

@phoenixeliot The paths in the error logs should give us a clue, whether `ijsinstall --spec-path=full` is working or not. `ijsinstall --spec-path=full` should install a kernelspec with a full path to...

That's expected. Every time the node versions is changed, new binaries for `zeromq` are required. if `--spec-path=full` is used, the kernelspec will include the full path to node and ijavascript...

@kingscolour Thank you for reporting your experience. My understanding is that if `npm config set prefix $HOME` has been set, then `npm install -g ijavascript` installs `ijavascript` into `~/lib/node_modules/ijavascript`. In...

@ina6ra Thank you for posting this. I'm sure iJavascript users will find it useful.

There are many ways to prevent copy. The DOM inspector could give you a clue of what method (event handler, css) has been used to prevent copy.

Sorry about that! I opened #245 to remind myself, but this documentation really needs more visibility. The solution is hidden in https://github.com/n-riesco/ijavascript/issues/221#issuecomment-784648092 and the comments of some installation issues. Basically,...

That error message is telling us that `zeromq` didn't find the binary for your installation. My guess would be that IJavascript needs reinstalling to make sure it builds a binary...

I'd need to know what command is failing and the error messages to be able to help further (the error number doesn't help me enough). To build from source in...

In Windows, `npm install -g ijavascript` fails, because it can't locate an installation of Visual Studio. See [here](https://github.com/nodejs/node-gyp#on-windows) the requirements to build from source. In Ubuntu, `jupyter` fails to launch...

Just to be clear: after running `sudo apt-get install libzmq3-dev`, you also need to: * reinstall IJavascript: ``` $ npm uninstall -g ijavascript $ npm install -g ijavascript ``` *...