0

我已经通过 Mac OS 上的自制软件安装了 wrk2。(https://github.com/giltene/wrk2/wiki/Installing-wrk2-on-Mac

我能够运行 wrk2 命令并且简单的负载测试工作正常。但是,我想为需要 json 和 uuid 库的请求正文做更复杂的事情。

在我的终端中,我似乎没有安装 lua

➜ lua
zsh: command not found: lua
➜ luarocks
zsh: command not found: luarocks

当我导入 uuid 或 json 模块时,我在运行 wrk 时看到此错误

test.lua: test.lua:1: module 'json' not found:
    no field package.preload['json']
    no file './json.lua'
    no file '/usr/local/share/luajit-2.0.3/json.lua'

我可以为 wrk2 获取这些模块的最佳方式是什么?

4

1 回答 1

1

只需使用brew安装:

brew install lua
brew install luarocks
于 2020-02-21T15:32:08.573 回答