我试图将代码从wget2编译成exe。
首先我从这里下载了文件: https://github.com/rockdaboot/wget2
我安装了Nodejs v8.2.1
然后按照此处的说明开始: https://github.com/rockdaboot/wget2
我目前停留在"#git"中构建的./bootstrap命令。
git clone https://gitlab.com/gnuwget/wget2.git
cd wget2
./bootstrap
# on shell failure try 'bash ./bootstrap'
git clone工作正常,我可以cd到wget2目录但是当我输入./bootstrap时出现此错误:
'.' is not recognized as an internal or external command
如何使此命令有效?
答案 0 :(得分:0)
这种类型的命令应该在bash中执行,而不是在没有正确解释'./'的CMD中。
您可以尝试将provided by Git作为mingw bash:只需解压缩PortableGit-2.13.3-64-bit.7z.exe
和add Git to your PATH
set GH=C:\Git2.13.3
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
然后您可以输入:bash
。并执行建议的命令。