解压过大文件(超过4GB)传输至服务器的问题

不能在终端执行unzip指令了。

1、通过终端

7za x 文件名.zip

2、通过jupyter notebook代码来解决

import zipfile

f = zipfile.ZipFile("dataset.zip",'r') # 压缩文件在jupyter中的位置
for file in f.namelist():
    f.extract(file,"./dataset")               # 解压到的位置
f.close()

你可能感兴趣的:(调试,服务器)