问题标签 [zerobrane]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
lua - Wrong architecture error when loading lgi
I have Lua 5.3 installed on my Mac Sierra OS with Luarocks and it seems to be working fine. In fact, I have lgi
installed and this file works without error from the terminal when I run it:
However, in ZeroBrane with the 5.3 interpreter selected, the same file produces the following error:
I also tried using the installed interpreter:
but this had no effect.
SO... does anyone have any pointers? Why does the terminal work but ZeroBrane complain about the wrong architecture?
zerobrane - 从脚本 ZeroBraneStudio 安装时出错
执行 ZeroBraneStudioEduPack-1.70-linux.sh 时出现此错误:xdg-desktop-menu: No writable system menu directory found.
可能与我的桌面环境有关?目前我正在使用 sway 和 xwayland。
zerobrane - 在 Zerobrane Studio 中构建配置,可以吗?
有没有办法在 zerobrane studio 中拥有/使用/实施构建配置?我使用电晕,我当前的 IDE 是 lua glider。虽然 lua glider 项目已经死了快两年了,但我仍然使用 IDE,因为它有构建配置。无论如何,在 zerobrane studio 中是否有/实现相同的功能?
澄清一下,使用 glider 的构建配置,我可以 1- 在构建之前自动将代码插入到 main.lua 的顶部(例如:isFreeVersion = false; OR isFreeVersion = true) 2- 在构建之前合并文件夹或将内容从一个文件夹复制到另一个文件夹(示例:有两个使用公共代码的相似项目;我将这些代码文件放在一个公共文件夹中,并将其内容复制到构建时的项目文件夹中;这样我只编辑这些代码文件一次)
非常感谢,卢埃
zerobrane - 如何在错误行自动中断lua程序
我使用自己的解释器来运行 lua 程序并使用 zerobrane 进行调试。如果解释器遇到错误,如何让调试器在错误行中断?
lua - 在 Windows 10 上使用 Torch 运行 Lua(管理员权限有限)
设置深度学习框架 [Lua, Torch]:
我需要在Windows 10和ZeroBrane IDE上设置运行Torch的Lua,安装软件的可能性有限,下载权限受限。
我花了这么长时间,所以我想我可以为你们分享一个食谱。如果它对你有帮助,我会很高兴。
linux - 错误:在编译时找不到 Lapack 库(zerobrane、lua、torch)
经过研究我发现:
和
这又给我留下了一个错误:
lua - Lua添加错误
在处理大数字(64 位值)时,Lua 加法似乎不起作用。我试图计算以下内容:
或六边形
Lua 5.1、5.2和5.3都返回
无需拿出你的计算器来看看这是错误的。偶数加上奇数不是偶数。事实上,它似乎偏离了 1(正确的结果是72057594037927935)。在六进制中,问题更加明显,因为结果应该是0xFFFFFFFFFFFFFF。任何人都知道发生了什么,或者我在这里会做错什么?
更新:
有关信息,我在 Windows 10 上使用ZeroBrane Studio看到了这一点。
linux - linux 上的 Zerobrane 解释器路径 (corona & wine)
我已经用 wine 在 linux 上制作了 corona sdk,除了 zerobrane 解释器路径之外一切都很好。我明白了 => 运行检测器:无法找到 /home/zed/.wine/drive_c/Program Files (x86)/Corona Labs/Corona/Corona Simulator.exe 的解释器
任何想法 ?
zerobrane - 尝试使用:zbstudio.exe -cfg "ini=false" 但是我在哪里放置我的替代 ini 文件的路径和文件名?
通过上面的操作,我在控制台中收到以下错误消息:
Can't open file 'ini=false':系统找不到指定的文件。
它试图打开文件名'ini = false'!?
lua - 将函数分配给变量或表时的不同行为
我在表和带有函数的简单变量分配之间有不同的行为。例如,在分配数字时不存在这种差异。
func is function(x) return 10*x end 但是:我得到 arrFunc={function(x) return 10*x end, nil } 而不是 arrFunc={function(x) return 10*x end, function(x) return 10*x 结束}
当对我来说 func 和 arrFunc[2] 只是用于接收数据(包括一流函数)的同一个“盒子”时,我不明白这种区别。
可能是一个线索(我不明白):在控制台中,执行最后一行后,我有以下信息: