我尝试使用 luarocks 为 lua 安装 enet。首先,我从 github 中检查了 enet(库)并对其进行了编译:
svn co https://github.com/lsalzman/enet.git/trunk enet.git
cd enet.git
autoreconf -vfi
./configure && make && make install
这完成没有错误。然后,我通过 luarocks 安装了 enet(lua 绑定):
luarocks install enet
同样,没有错误。但是,如果我尝试require "enet"
,它总是会抛出错误:
error loading module 'enet' from file '/usr/local/lib/lua/5.1/enet.so':
libenet.so.2: cannot open shared object file: No such file or directory
stack traceback:
[C]: ?
[C]: in function 'require'
stdin:1: in main chunk
[C]: ?
如果它很重要,我会在 Raspberry Pi 上使用 Raspbian Wheezy 执行此操作。我怎样才能让它工作?