Lua's package management system?
问题 What's the Lua's standard package management system and repository? Like brew for Mac OS X , npm for node.js . 回答1: There is no standard Lua package management system, but you can try out the following: LuaRocks - contains a rather large number of Lua modules distributed as rocks. Once LuaRocks is installed, the installation is simple: luarocks install desired-package . On Linux/Unix/Mac, this will install into /usr/local/{share,lib}/lua/5.1 , where the Lua interpreter looks for modules.