Jupiterlab (Software per l'analisi di dati): differenze tra le versioni
Da its-data.
Creata la pagina jupiterlab e i comandi per avviare il container |
Aggiunto categorie |
||
| Riga 18: | Riga 18: | ||
jupyter/datascience-notebook start.sh jupyter lab | jupyter/datascience-notebook start.sh jupyter lab | ||
</syntaxhighlight>Seguire l'output del terminale per aprire l'interfaccia di jupiter in browser | </syntaxhighlight>Seguire l'output del terminale per aprire l'interfaccia di jupiter in browser | ||
[[Categoria:Python]] | |||
Versione delle 20:48, 18 giu 2026
Jupiterlab e' un software per fare analisi di dati.
I seguenti comandi sono testati sulla distribuzione Trisquel GNU Linux.
Comando per creare il container
Il seguente comando crea il container se non esiste e lo avvia.
docker run -it --rm -p 8888:8888 \
-v ${PWD}:/home/jovyan/work \
-e JUPYTER_ENABLE_LAB=yes \
jupyter/datascience-notebook start.sh jupyter lab
Comando per eseguirlo in docker
Eseguire il seguente comando su una shell per avviare il container:
docker run -it --rm -p 8888:8888 \
-v ${PWD}:/home/jovyan/work \
-e JUPYTER_ENABLE_LAB=yes \
jupyter/datascience-notebook start.sh jupyter lab
Seguire l'output del terminale per aprire l'interfaccia di jupiter in browser
