3

I have a folder named myfolder (with multiple files) in JupyterLab. I can download files but not folders as JupyterLab does not allow it. I, therefore, want to zip the folder then download it to my desktop.

Question: how do I zip myfolder?

This one didn't work: Downloads folder from JupyterLab

williamscathy825
  • 185
  • 1
  • 1
  • 11
  • 1
    Does your jupyterlab come with a [Terminal](https://imgur.com/wNPVNwb.png)? If so, what is the output when you type `zip` command into the terminal and press enter on your keyboard? – smac89 Feb 03 '21 at 23:50

1 Answers1

6

Did you try tar instead of zip as well?

Check the discussion in github

on my notebook zip is not working but tar is. so

%%bash

tar -czf archive.tar.gz foldername

Serc
  • 106
  • 3