检查
luarocks --version
安装
-$ wget https://luarocks.org/releases/luarocks-3.2.1.tar.gz
-$ tar zxpf luarocks-3.2.1.tar.gz
-$ cd luarocks-3.2.1
-$ ./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 build
# 安装需要 root 权限
- $ sudo make install
PS: openresty
均以默认安装路径,请改为实际路径。
说明--prefix
设定 luarocks
的安装目录
--with-lua
则是系统中安装的 lua
的根目录
--lua-suffix
版本后缀,此处因为 openresyt
的lua解释器使用的是 luajit
,所以此处得写 jit
--with-lua-include
设置 lua
引入一些头文件头文件的目录
之后我们就可以看到 luarocks
命令就被安装在了 /usr/local/openresty/luajit/bin
下面
然后把它添加到到 PATH
中
vi ~/.bash_profile
增加一行,然后重启:
export PATH=$PATH:/usr/local/openresty/luajit/bin
执行 luarocks install package
就可以安装 lua
的包了
luarocks install package --tree=path
还可以指定你安装的包的存放路径
用luarocks安装lz4
sudo luarocks install lua-lz4
或者:
cd /usr/local/openresty/luajit/bin/
sudo ./luarocks install lua-lz4