Google Colab:将大型.zip文件复制到colab VM错误

时间:2020-04-04 12:43:26

标签: google-colaboratory

我在Google驱动器中有一个很大的.zip文件(〜9GB)。然后,我将驱动器安装到colab,我想将文件复制到google colab VM。

命令:

SELECT ResponsibleParty.RPID
    ,subParty.PartyKey AS PartyID
    ,party.PartyName
    ,PartyTable.PartyID AS SubID
    ,subPartyName.PartyName AS SubParty
FROM ResponsibleParty
INNER JOIN PartyTable ON ResponsibleParty.SPID = PartyTable.PartyID
INNER JOIN ResponsibleParty subParty ON subParty.SPID = PartyTable.PartyID
LEFT JOIN PartyTable party ON subparty.PartyKey = party.PartyID
LEFT JOIN PartyTable subPartyName ON ResponsibleParty.SPID = subPartyName.PartyID

显示错误:

!cp "/content/drive/My Drive/np_data.zip"  "/content/data.zip" 

测试的第一天该错误不会显示,但是第二天该错误就会发生,并且永远不会停止。

该如何解决?

1 个答案:

答案 0 :(得分:1)

如果无法通过安装复制。您可以改用gdown

  • 公开共享文件,并获取类似https://drive.google.com/open?id=xxxxxxxxxxxxxx的网址
  • 使用gdown --id xxxxxxxxxxxxxx呼叫gdown

然后可以将大文件下载到当前目录。