n-riesco / ijavascript

IJavascript is a javascript kernel for the Jupyter notebook
Other
2.19k stars 185 forks source link

Requiring external packages #20

Closed rgbkrk closed 9 years ago

rgbkrk commented 9 years ago

Where do packages get pulled from? It's not picking up globally installed packages for me.

n-riesco commented 9 years ago

ijs should behave like the node.js REPL. If it doesn't, I'll consider it a bug.

If you can require the package in the node.js REPL:

$ node
> require("mypackage")

but you can't:

$ ijs
In[1]: require("mypackage")

please, file a bug including:

rgbkrk commented 9 years ago

Since I posted this, I'm able to get at the package I want which was zmq. ¯(ツ)/¯ Sorry for the noise.