gpt4 book ai didi

python - 在 Google Colab 中从 GitHub 加载 .zip 文件

转载 作者:行者123 更新时间:2023-12-05 09:34:37 24 4
gpt4 key购买 nike

我的 GitHub 存储库中有一个 zip 文件。我想将它加载到我的 Google Colab 文件中。我有它的 url,可以像 https://raw.githubusercontent.com/rehmatsg/../master/...zip

这样下载它

我使用这种方法将文件下载到 Google Colab

from google.colab import files

url = 'https://raw.githubusercontent.com/user/.../master/...zip'
files.download(url)

但是我得到这个错误

FileNotFoundError                         Traceback (most recent call last)
<ipython-input-5-c974a89c0412> in <module>()
3 from google.colab import files
4
----> 5 files.download(url)

/usr/local/lib/python3.7/dist-packages/google/colab/files.py in download(filename)
141 raise OSError(msg)
142 else:
--> 143 raise FileNotFoundError(msg) # pylint: disable=undefined-variable
144
145 comm_manager = _IPython.get_ipython().kernel.comm_manager

FileNotFoundError: Cannot find file: https://raw.githubusercontent.com/user/.../master/...zip

Google Colab 中的文件是临时的,所以我不能每次都上传。这就是我想在项目的 GitHub 存储库中托管该文件的原因。将文件下载到 Google Colab 的正确方法是什么?

最佳答案

使用“wget”bash 命令。只需打开 Github 项目并转到下载为 zip 选项(在右上角)。然后,复制 url 并使用“wget”命令。

!wget https://github.com/nytimes/covid-19-data/archive/refs/heads/master.zip

!unzip/content/master.zip

祝你好运。

关于python - 在 Google Colab 中从 GitHub 加载 .zip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66504637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com