Reputation: 3163
I'm trying to run a .ipynb
file inside another. The reason why I want to nest the two is because in one of them, I have all of the conda packages, github repos installed and I don't want to redo the entire thing for a demo file that I'll be using temporarily. I'm using colab because my computer does not have an NVIDIA GPU and therefore I can't use CUDA.
Upvotes: 1
Views: 208
Reputation: 40828
Try this:
%run another.ipynb
You may need to mount drive to access your drive/My Drive/Colab Notebooks/
Upvotes: 2