如何在Windows 8中安装,编译和使用Rebar

时间:2013-04-03 19:27:25

标签: windows erlang rebar

这可能吗?

我遇到的关于如何构建和使用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:\二郎\螺纹钢

我转到windows shell并输入:

SET PATH=C:\Program Files\erl5.10.1\bin

这是位于持有erlang.exe的目录内的'bin'文件夹

接下来我输入:

C:\erlang\rebar>bootstrap.bat 

编译! :)

4 个答案:

答案 0 :(得分:13)

rebar目录中应该有一个bootstrap.bat脚本。你不需要使用cygwin就可以了,但是你需要安装Erlang并且在路径上。

答案 1 :(得分:1)

我假设您已经erlang已经被添加到您的路径中。

您只需下载Git并进行安装即可。然后打开git bash并输入

  • git clone https://github.com/rebar/rebar.git

  • 一旦将其克隆到您想要的位置,您就可以通过进入rebar目录来运行命令。

    ./自举

  • 现在它可以正常工作并告诉您在当前工作目录中编译了rebar文件。

很高兴您可以为您的项目使用钢筋。

答案 2 :(得分:0)

您也可以从(Windows)命令shell中调用 path \ to \ erlang-install \ bin \ escript.exe bootstrap

bootstrap 只是一个e(rlang)脚本。

答案 3 :(得分:0)

您可以下载并安装Git for Windows 然后,使用它来运行相同的指令:

git clone git://github.com/rebar/rebar.git
cd rebar
./bootstrap

一切都应该正常。