Reputation: 2309
I've been hunting for this for a while now but can't seem to find this info anywhere else? I'm running multiple Jupiter notebooks on Google Colab.
Do they share resources?
Upvotes: 0
Views: 494
Reputation: 38619
No, each notebook uses a distinct, ephemeral backend for code execution.
You can observe this by, say, creating a file on the local filesystem in one notebook and observing its absence in another. Or, vice versa.
To share files among backends, you can mount Google Drive and access shared files there.
Upvotes: 1