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
- Host: GitHub
- URL: https://github.com/anuar2k/sem3-notebook
- Owner: anuar2k
- License: other
- Created: 2020-10-11T11:38:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T19:25:45.000Z (over 5 years ago)
- Last Synced: 2025-04-11T22:51:35.115Z (about 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.