OpenResty 整合 LuaRocks

162 阅读1分钟

安装LuaRocks

下载地址: luarocks.github.io/luarocks/re…

下载并解压

wget https://luarocks.github.io/luarocks/releases/luarocks-3.9.2.tar.gz
tar -xvf luarocks-3.9.2.tar.gz
cd luarocks-3.9.2

编译并安装

./configure --prefix=/usr/local/openresty/luajit \ 
--with-lua=/usr/local/openresty/luajit/ \ 
--lua-suffix=jit \ 
--with-lua-include=/usr/local/openresty/luajit/include/luajit-2.1

make && make install

建立软链

ln -s /usr/local/openresty/luajit/bin/luarocks /usr/local/bin/luarocks