paulroth3d / jupyter-ijavascript-utils

Utility library for working with iJavaScript - a Jupyter Kernel
1 stars 0 forks source link

Allow the sample notebooks on binder #4

Closed paulroth3d closed 1 year ago

paulroth3d commented 2 years ago

mybinder.org is a great service that lets you run jupyter notebooks online.

It seems that we need to identify an environment.yml file to configure the build steps, which would include installing iJavaScript kernel and installing it.

Very similar to the steps found here:

ex:

!npm install -g npm@latest
!npm cache verify
!npm install -g --unsafe-perm ijavascript
!ijsinstall --install=global
!jupyter-kernelspec list
paulroth3d commented 2 years ago

Similar issue found under this issue

It seems that once we define a suitable docker file / get that sorted, then the URL should work fine.

paulroth3d commented 2 years ago

See here for a similar example:

https://github.com/paulroth3d/python-for-js-developers

Running it here:

https://mybinder.org/v2/gh/paulroth3d/python-for-js-developers/HEAD?filepath=p4js.ipynb

paulroth3d commented 2 years ago

Example Tutorial on Google Colab has been helpful here.

paulroth3d commented 1 year ago

Completed! and added to the main README