Reputation: 526
If I install packages on google-colab with
!pip install package_name
Will they be stored somewhere on my laptop or is everything stored online?
Thanks!
Upvotes: 2
Views: 10861
Reputation: 48
All data will only store in the session you are currently in if you are using Google’s server, nothing will download to your machine unless you are using Colab to connect to your local runtime.
Upvotes: 2