An open API service indexing awesome lists of open source software.

https://github.com/anuar2k/sem3-notebook

docker image with all jupyter kernels for 3rd semester
https://github.com/anuar2k/sem3-notebook

Last synced: 5 months ago
JSON representation

docker image with all jupyter kernels for 3rd semester

Awesome Lists containing this project

README

          

# sem3-notebook
One image to rule them all (RPiS, PF and AG). 😎

This image is a combined R + Haskell + SciPy Jupyter Notebook. It uses `crosscompass/ihaskell-notebook` as its base, adds R to it using exact recipe as `jupyter/r-notebook` and python libraries from `jupyter/scipy-notebook`.

🙏 God bless the people behind Jupyter Docker Stacks. 🙏

### HoW dO i UsE iT ❓❓❓❓🤔
`docker create --name sem3-notebook -p 8888:8888 anuar2k/sem3-notebook` if you want to use classic Jupyter.

To enable JupyterLab do it like: `docker create --name sem3-notebook -p 8888:8888 anuar2k/sem3-notebook jupyter lab --LabApp.token=''` and visit `localhost:8888` in your browser.

You can also bind your current working dir to `/home/jovyan/work/` with `-v $(pwd):/home/jovyan/work` as an option of `docker create`.

Paste this to your terminal to do all above at once: `docker create --name sem3-notebook -p 8888:8888 -v $(pwd):/home/jovyan/work anuar2k/sem3-notebook jupyter lab --LabApp.token=''`. Now that's a humongous command.