ijavascript icon indicating copy to clipboard operation
ijavascript copied to clipboard

install IJavascript and its kernelspec with a single command

Open n-riesco opened this issue 8 years ago • 1 comments

Currently to install IJavascript's kernelspec with Jupyter requires two commands:

npm install -g ijavascript
ijsinstall [options]

Some users are unaware or forget to run ijsintall.

I'd like to explore alternative options:

  • passing arguments like this:

    npm install -g ijavascript -- ijsinstall
    
  • an alternative npm package:

    npm install ijavascript-kernelspec
    

n-riesco avatar Dec 26 '17 09:12 n-riesco

Usually, with npm modules, one single no arguments install does the job. I would recommend sticking to that convention. IMHO, npm install -g ijavscript should run ijsinstall. An optional argument can prevent running ijsinstall.

On Tue, Dec 26, 2017 at 11:44 AM, Nicolas Riesco [email protected] wrote:

Currently to install IJavascript's kernelspec with Jupyter requires two commands:

npm install -g ijavascript ijsinstall [options]

Some users are unaware or forget to run ijsintall.

I'd like to explore alternative options:

passing arguments like this:

npm install -g ijavascript -- ijsinstall

an alternative npm package:

npm install ijavascript-kernelspec

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/n-riesco/ijavascript/issues/139, or mute the thread https://github.com/notifications/unsubscribe-auth/AHQ05PqY-Ex3olyRSg45lAcJbgeERYywks5tEMAUgaJpZM4RMpUu .

elshor avatar Dec 26 '17 10:12 elshor