wget2 - ./bootstrap - '.'不被识别为内部或外部命令
wget2 - ./bootstrap - '.' is not recognized as an internal or external command
我正在尝试将 wget2 中的代码编译成 exe。
首先我从这里下载文件:
https://github.com/rockdaboot/wget2
我安装了 Nodejs v8.2.1
然后开始按照此处的说明进行操作:
https://github.com/rockdaboot/wget2
我目前卡在 "Build from git".
下列出的 ./bootstrap 命令
git clone https://gitlab.com/gnuwget/wget2.git
cd wget2
./bootstrap
# on shell failure try 'bash ./bootstrap'
git 克隆工作正常,我可以 cd 到 wget2 目录,但是当我键入 ./bootstrap 时,我收到此错误:
'.' is not recognized as an internal or external command
如何使这个命令起作用?
该类型的命令应该在 bash 中执行,而不是在“./”未被正确解释的 CMD 中执行。
你可以试试mingw bash那个provided by Git: just unzip PortableGit-2.13.3-64-bit.7z.exe
and
set GH=C:\Git2.13.3
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
然后您可以输入:bash
。并执行建议的命令。
我正在尝试将 wget2 中的代码编译成 exe。
首先我从这里下载文件: https://github.com/rockdaboot/wget2
我安装了 Nodejs v8.2.1
然后开始按照此处的说明进行操作: https://github.com/rockdaboot/wget2
我目前卡在 "Build from git".
下列出的 ./bootstrap 命令git clone https://gitlab.com/gnuwget/wget2.git
cd wget2
./bootstrap
# on shell failure try 'bash ./bootstrap'
git 克隆工作正常,我可以 cd 到 wget2 目录,但是当我键入 ./bootstrap 时,我收到此错误:
'.' is not recognized as an internal or external command
如何使这个命令起作用?
该类型的命令应该在 bash 中执行,而不是在“./”未被正确解释的 CMD 中执行。
你可以试试mingw bash那个provided by Git: just unzip PortableGit-2.13.3-64-bit.7z.exe
and
set GH=C:\Git2.13.3
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
然后您可以输入:bash
。并执行建议的命令。