Lua 找不到指定模块 找不到指定的程序 V2
- "error loading module 'XXX' from file '..\YYY.dll'" - "找不到指定的模块。":已找到require的包,但没有找到其内引用的其他模块。
如:require'iuplua'
,有iuplua.dll,但没有相应的iup.dll。 - "error loading module 'XXX' from file '..\YYY.dll'" - "找不到指定的程序。":已找到require的包,但没找到入口函数。
如:require'iup'
,lua需要经由iuplua来加载iup。 - "module 'iuplua' not found",没有找到require的包——未在
package.path
、package.cpath
所描述的路径找到包。