'Is it posible to prevent juputer lab from saving notebooks automatically?
I tend to lunch jupyter lab from different locations, open a new notebook to try out something, etc. Jupyter lab creates a notebook and saves it to the disk by default. As a result, I end up with notebooks that I don't want to keep all over my disk drive. Is there a way to prevent this from happening?
Solution 1:[1]
You might find it quickest to use an ephemeral docker container:
docker run --rm -p 8888:8888 \
-e JUPYTER_ENABLE_LAB=yes \
-e JUPYTER_TOKEN=docker \
--name jupyter \
-d jupyter/datascience-notebook:latest
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nik Wehr |
