This seems to be a very simple question, but I couldn't find a way to do it. The jyputer notebook has the option to download file one by one. But my training process generates too many files, and I want to download them all at once. Is there any way to do it?
Asked
Active
Viewed 2,814 times
5
-
Actually, I just found a solution to my own question here: https://stackoverflow.com/questions/44982313/how-to-copy-files-from-google-compute-engine-to-local-directory. – jwyao Jan 31 '20 at 23:45
1 Answers
4
Assuming it is JupyterLab what you are using:
- Open a new Launcher (+ icon) and start a new terminal session.
- Use zip -r FILE_NAME.zip PATH/TO/OUTPUT/FOLDER/ to compress the required folder.
- Download the zip file as you were doing with the other ones.

Javier Bóbeda
- 468
- 2
- 10