Lua - 如何在 OSX 中添加路径变量
有人可以列出我需要采取的步骤,将 lua 文件(theclass.lua)放在我的系统上的某个位置,以便我可以做到这一点:
require 'theclass'
并且编译器会找到它,而不必将 theclass 复制到每个目录中?
Can someone list the steps I would need to take to put a lua file (theclass.lua) somewhere on my system so that I can do this:
require 'theclass'
and the compiler will find it without having to copy theclass into every directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您收到错误消息,则可以放置的位置列表是一部分:
Lua 至少咨询三个位置以查找要搜索的目录列表:
配置标头中的 C
LUA_PATH
Lua 全局
LUA_PATH
环境变量
LUA_PATH
参见 PiL
The list of places you may put it is part if the error message you receive:
Lua consults at least three places for the list of directories to search:
The C
LUA_PATH
in the configuration headerThe Lua global
LUA_PATH
The environment variable
LUA_PATH
See PiL