Access Paperspace notebook from another instance

How do we access paperspace notebook saved in one instance from another instance?

I can only think you might try transfering via the common persistant /storage folder.

How do we save our notebooks on the common persistent /storage folder?

You can open a shell terminal and use cp -r to recursvely copy, e.g. on the old machine something like…

$ cp -r /notebooks /storage/temp_notebooks

and on the new machine…

$ cp -r /storage/temp_notebooks/* /notebooks

or you can copy individual files.

Sorry I’m not sure from memory if its “notebook” or “notebooks”.