如何从 Github 存储库下载 zip 文件

如何从 Github 存储库下载 zip 文件

我正在尝试使用以下命令从 Github 存储库下载 zip 文件:

wget --no-check-certificate https://github.com/brendenlake/omniglot/blob/master/python/images_evaluation.zip -O /tmp/images_evaluation.zip

但它不会下载有效的 zip 文件。我想如果您单击 url,它会下载浏览器显示的 HTML 文件。

如何使用 wget 从公共 Github 存储库下载 zip 文件?

答案1

我在这里找到了答案:https://unix.stackexchange.com/a/387912/132714

我已经改变了blob

wget --no-check-certificate https://github.com/brendenlake/omniglot/blob/master/python/images_evaluation.zip -O /tmp/images_evaluation.zip

raw

wget --no-check-certificate https://github.com/brendenlake/omniglot/raw/master/python/images_evaluation.zip -O /tmp/images_evaluation.zip

现在它会下载一个有效的 zip 文件。

答案2

尝试使用 git clone而不是wget

相关内容