这可能吗?
我遇到的所有有关如何构建和使用Rebar的教程都涉及Unix命令,而我是最不幸的Windows用户。如果可以,我真的想避免安装Cygwin。
例如,要构建钢筋,您将获得:
$ 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\钢筋
我转到Windows Shell并输入:
SET PATH=C:\Program Files\erl5.10.1\bin
这是位于erlang.exe目录中的“bin”文件夹
接下来我输入:
C:\erlang\rebar>bootstrap.bat
编译! :)
最佳答案
钢筋目录中应该有一个bootstrap.bat
脚本。您不需要cygwin即可工作,但是您需要在路径上安装Erlang。
关于windows - 如何在Windows 8中安装,编译和使用Rebar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15796263/