从哪里获得 liber.h file/package for Lua?
Where to get liber.h file/package for Lua?
我正在尝试使用 sudo luarocks install lualdap
通过 luarocks 安装 lualdap,但收到
Installing https://luarocks.org/lualdap-1.2.4.rc1-0.src.rock
Error: Could not find header file for LBER
No file lber.h in /usr/local/include
You may have to install LBER in your system and/or pass LBER_DIR or LBER_INCDIR to the luarocks command.
Example: luarocks install lualdap LBER_DIR=/usr/local
备注:
- 我在 Lua 5.3.
- 我已经安装了 OpenSSL 和 HTTP。
- 我试过
LBER_DIR=/usr/local
参数。
我四处寻找我需要下载什么摇滚文件才能获得这个 lber.h 文件,但我没有任何运气。我怎样才能得到这个 lber.h 文件?
lber.h
不是特定于 Lua 的文件,而是需要在您的系统上安装以便编译 lualdap
岩石的库的一部分。
在类似 Ubuntu 的系统上,您可以安装它:
sudo apt-get install libldap2-dev
我正在尝试使用 sudo luarocks install lualdap
通过 luarocks 安装 lualdap,但收到
Installing https://luarocks.org/lualdap-1.2.4.rc1-0.src.rock
Error: Could not find header file for LBER
No file lber.h in /usr/local/include
You may have to install LBER in your system and/or pass LBER_DIR or LBER_INCDIR to the luarocks command.
Example: luarocks install lualdap LBER_DIR=/usr/local
备注:
- 我在 Lua 5.3.
- 我已经安装了 OpenSSL 和 HTTP。
- 我试过
LBER_DIR=/usr/local
参数。
我四处寻找我需要下载什么摇滚文件才能获得这个 lber.h 文件,但我没有任何运气。我怎样才能得到这个 lber.h 文件?
lber.h
不是特定于 Lua 的文件,而是需要在您的系统上安装以便编译 lualdap
岩石的库的一部分。
在类似 Ubuntu 的系统上,您可以安装它:
sudo apt-get install libldap2-dev