linux下载github项目文件

首先,在【code】下找到【download zip】,右键【检查元素】,根据关键字【zip】找到对应的.zip文件,如下图中【href="/bubbliiiing/faster-rcnn-pytorch/archive/refs/heads/master.zip"】就是我们需要的内容,而具体的zip文件下载地址为:https://github.com/bubbliiiing/faster-rcnn-pytorch/archive/refs/heads/master.ziphttps://github.com/bubbliiiing/faster-rcnn-pytorch/archive/refs/heads/master.zip

即:【https://github.com】+【href内容】

linux下载github项目文件_第1张图片

然后通过wget命令就可以将zip文件下载到服务器啦:

wget https://github.com/bubbliiiing/faster-rcnn-pytorch/archive/refs/heads/master.zip

linux下载github项目文件_第2张图片

 下载完成后通过unzip命令进行解压:

unzip xx/xx/xx.zip

你可能感兴趣的:(linux,github)