Windows 中的 Erlang 和 YAWS 设置
我正在尝试在 Windows 中使用 YAWS 设置 Erlang。我安装了 otp_win32_R14B03.exe ,它工作正常,我能够编译 Erlang 程序。
我安装了 Yaws-1.90-windows-installer.exe
,然后从命令提示符处尝试运行 YAWS -i
命令,我收到以下错误:
C:\ERL58~1.4\ERTS-5~1.4\bin\beam.smp.dll unknown flag ->
Usage: beam.smp.dll [flags] [ -- [init_args] ]
I am trying to setup Erlang with YAWS in Windows. I Installed otp_win32_R14B03.exe
and it worked fine and I am able to compile Erlang Programs.
I installed Yaws-1.90-windows-installer.exe
, then from command prompt I tried runningYAWS -i
command and I get below error:
C:\ERL58~1.4\ERTS-5~1.4\bin\beam.smp.dll unknown flag ->
Usage: beam.smp.dll [flags] [ -- [init_args] ]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,你的系统环境 PATH 中必须有 erlang 可执行脚本的完整路径。通常在 Windows 上,您会发现此路径为
C:/Program Files (x86)/erl-5.8.3/bin
。将此路径添加到您的 PATH 环境变量中。接下来是启动 yaws 的命令应该是 yaws -i 。 不是 YAWS -I 您可能在 shell 中输入它的方式。
First of all, you must have the Full path to erlang's executable scripts in your system environment PATH. usually on windows you will find this path as
C:/Program Files (x86)/erl-5.8.3/bin
. add this path in your PATH environment variable.The next thing is that the command to start yaws should be
yaws -i
. NOT YAWS -I the way you probably entered it in the shell.经过进一步研究,我发现了问题
我们需要添加 C:\Program\erl5.8.4\bin, C:\Program\erl5.8.4\erts-5.8.4\bin,C:\Program\erl5.8.4\lib \yaws-1.90\bin 所有三个到路径变量,然后雅司病就像魅力一样工作
On further research I figured out the problem
We need to add C:\Program\erl5.8.4\bin, C:\Program\erl5.8.4\erts-5.8.4\bin,C:\Program\erl5.8.4\lib\yaws-1.90\bin all three to path variable, then yaws works like charm