Git 安装PunkScan时缺少文件install.run

Git 安装PunkScan时缺少文件install.run,git,bitbucket,ubuntu-14.04,Git,Bitbucket,Ubuntu 14.04,我正在Ubuntu 14.04上安装PunkScan,请遵循以下指南: 在安装PunkScan的步骤中,它说: (1) 在项目的根目录中,您将找到一个名为install.run的文件,请运行它: /install.run 我已从bitbucket下载: git clone https://bitbucket.org/punkspider/punkscan.git 我尝试使用命令find install.run:find punkscan-name install.run 结果是空的这本指南已经

我正在Ubuntu 14.04上安装PunkScan,请遵循以下指南:

在安装PunkScan的步骤中,它说:

(1) 在项目的根目录中,您将找到一个名为install.run的文件,请运行它:

/install.run

我已从bitbucket下载:

git clone https://bitbucket.org/punkspider/punkscan.git
我尝试使用命令find install.run:
find punkscan-name install.run

结果是空的

这本指南已经有一年的历史了,它说明了朋克斯坎版本1.2.x

您可以直接从bitbucket获得压缩

也可以在本地存储库中执行此操作

$ git tag -l                # this will list tags
$ git checkout tags/v1.2.2  # this will put you on commit tagged v1.2.2
您的git存储库将处于分离状态,但您将获得所需的所有文件

p.S.我建议第二种方法。以后可以使用标记:)