colab OSError:[Errno 5]输入/输出错误

时间:2020-08-08 18:21:09

标签: python google-colaboratory

我正在使用Google合作实验室,并正在安装Google云端硬盘。当我尝试复制大小为65Gb的zip文件时,出现以下错误:

[错误5]输入/输出错误

我使用下面的代码进行复制

%cp /content/drive/My\ Drive/###/data_odometry_gray.zip data_odometry_gray.zip

也尝试一下

import zipfile
zip_ref = zipfile.ZipFile("/content/drive/My Drive/###/data_odometry_gray.zip", 'r')
zip_ref.extractall("/content/")
zip_ref.close()

但有相同的错误

0 个答案:

没有答案