これは可能ですか?
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 シェルで鉄筋を使用する方法について段階的な手順を提供する以下のリンクまたはチュートリアルは、非常に高く評価されます。
アップデート:
Rebar を C:\erlang\rebar にあるディレクトリに手動でダウンロードして展開した後
Windows シェルに移動して、次のように入力します。
SET PATH=C:\Program Files\erl5.10.1\bin
これは、erlang.exe を保持するディレクトリ内にある「bin」フォルダーです。
次に入力します。
C:\erlang\rebar>bootstrap.bat
編集済み!:)