如何在 Cent OS 中安装 luarocks?
How to install luarocks in Cent OS?
我尝试在 Cent OS 中安装 luarocks。
./configure
命令后出现错误:
Lua interpreter found: /bin/lua...
Lua version detected: 5.1
lua found in $PATH: /bin
Checking Lua includes... lua.h not found (looked in //include, //include/lua/5.1, //include/lua5.1)
You may want to use the flag --with-lua or --with-lua-include. See --help.
据我理解正确,首先我需要安装Lua并在配置luarocks
时指定Lua的路径
在 /bin
(而不是 /usr/bin
)中使用 Lua 解释器似乎很不寻常。
您是否在某处安装了文件 lua.h
? (换句话说,你安装了 Lua 开发头文件了吗?)你应该可以使用 locate
命令找到它:
locate lua.h
如果您确实有 lua.h
(例如,在 /usr/include
中),请告诉配置脚本此文件所在的位置,就像错误消息提示您:
./configure --with-lua-include=/usr/include
我尝试在 Cent OS 中安装 luarocks。
./configure
命令后出现错误:
Lua interpreter found: /bin/lua...
Lua version detected: 5.1
lua found in $PATH: /bin
Checking Lua includes... lua.h not found (looked in //include, //include/lua/5.1, //include/lua5.1)
You may want to use the flag --with-lua or --with-lua-include. See --help.
据我理解正确,首先我需要安装Lua并在配置luarocks
时指定Lua的路径在 /bin
(而不是 /usr/bin
)中使用 Lua 解释器似乎很不寻常。
您是否在某处安装了文件 lua.h
? (换句话说,你安装了 Lua 开发头文件了吗?)你应该可以使用 locate
命令找到它:
locate lua.h
如果您确实有 lua.h
(例如,在 /usr/include
中),请告诉配置脚本此文件所在的位置,就像错误消息提示您:
./configure --with-lua-include=/usr/include