Nicolas Riesco
Nicolas Riesco
Sorry: `/home/nirvaan/bin/ijsinstall` must be a file link. Could you run `ll $(which ijsinstall)`, please? I want to check that it's using the Ijavascript installation in `/home/nirvaan/lib/node_modules/ijavascript`. If it does, I...
My guess is that Jupyter Notebook tries to kill the kernel and fails. I'll find a Windows box and see if I can debug the issue. Regardless of the cause,...
Do the instructions in [Updating-npm-bundled-node-gyp.md](https://github.com/nodejs/node-gyp/blob/787cf7f8e5ddd5039e02b64ace6b7b15e06fe0a4/docs/Updating-npm-bundled-node-gyp.md) work for you? --- [...] ## Windows ### Windows Command Prompt ``` npm install --global node-gyp@latest for /f "delims=" %P in ('npm prefix -g') do...
> npm ERR! gyp info using [email protected] Thank you for confirming the instructions in [Updating-npm-bundled-node-gyp.md](https://github.com/nodejs/node-gyp/blob/787cf7f8e5ddd5039e02b64ace6b7b15e06fe0a4/docs/Updating-npm-bundled-node-gyp.md) don't work!
> npm ERR! C:\Users\Liu.D.H\AppData\Roaming\npm\node_modules\ijavascript\node_modules\zeromq\binding.cc(24,10): fatal error C1083: Cannot open include file: 'v8.h': No such file or directory [C:\Users\Liu.D.H\AppData\Roaming\npm\node_modules\ijavascript\node_modules\zeromq\build\zmq.vcxproj] Again, thank you for checking whether updating the internal node-gyp fixes the...
@VoxHwa Since we've got a [report](https://github.com/n-riesco/ijavascript/issues/261#issuecomment-1002185317) of vs2019 working. Please, would you post your error log here, so we an figure out why it isn't working in your case?
@VoxHwa In your case, the issue is with the script [prepare.js](https://github.com/zeromq/zeromq.js/blob/64a92ab68c3918490ff45626365bf7b47c580e90/scripts/prepare.js) failing to download https://github.com/nteract/libzmq-win/releases/download/v2.1.0/libzmq-4.2.2-x64.lib into `zeromq/windows/lib/libzmq.lib`.
> I also have a question, https://github.com/nteract/libzmq-win is archived and deprecated, why not use https://github.com/zeromq/libzmq on windows. The latter also have window binary like https://github.com/zeromq/libzmq/releases/download/v4.3.4/libzmq-v142-x64-4_3_4.zip. `zeromq.js@6` uses `SRC_URL="https://github.com/zeromq/libzmq/releases/download/v${ZMQ_VERSION}/zeromq-${ZMQ_VERSION}.tar.gz"`, but it...
IJavascript behaves like the Node.js REPL does. That means `await` is not supported in the global context. Depending on your needs, here are a few solutions: If you need to...
That isn't going to work. `Object.keys` only returns enumerable keys (as you've discovered a `Promise` instance doesn't have any). And `$$.config.awaitExecution = true;` only works, when the result of executing...