这可能吗?
我遇到的所有关于如何构建和使用 Rebar 的教程都涉及 Unix 命令,而我是一个最不幸的 Windows 用户。如果我能提供帮助,我真的很想避免安装 Cygwin。
例如,要构建 Rebar,您将获得:
$ git clone git://github.com/rebar/rebar.git
$ cd rebar
$ ./bootstrap
Recompile: src/getopt
...
Recompile: src/rebar_utils
==> rebar (compile)
Congratulations! You now have a self-contained script called "rebar" in
your current working directory. Place this script anywhere in your path
and you can use rebar to build OTP-compliant apps.
什么是 windows-cmd 等效项?
以下任何链接或教程提供有关如何在 Windows shell 中使用钢筋的分步说明将不胜感激。
更新:
手动下载 Rebar 并将其解压到我的目录后:C:\erlang\rebar
我进入 windows shell 并输入:
SET PATH=C:\Program Files\erl5.10.1\bin
这是位于包含 erlang.exe 的目录中的“bin”文件夹
接下来我输入:
C:\erlang\rebar>bootstrap.bat
编译!:)