Я делаю это с двумя вариантами:
!unzip file_location -d file_destination #-d is for quite option.
Или другой, более сложный вариант:
import zipfile
from google.colab import drive
drive.mount('/content/drive/')
zip_ref = zipfile.ZipFile("/content/drive/My Drive/ML/DataSet.zip", 'r')
zip_ref.extractall("/tmp")
zip_ref.close()