Luarocks 无法安装库
Luarocks can't install a library
我想安装这个库:
https://luarocks.org/modules/dodo/lua-dbus
我愿意
luarocks search lua-dbus
有 0 个结果。
sudo luarocks install lua-dbus
也没有安装任何东西。
只有这个库有问题,因为我可以在luarocks上搜索其他库,例如
luarocks search socket
给出了很多匹配项。
我做错了什么?
该库(以及它所依赖的库)还没有版本发布,因此它们被标记为 DEV
(您可以在 "Versions" section 中看到)。
这些库不会出现在搜索中,或者默认情况下无法安装。您需要在搜索中添加 "development" 存储库:
luarocks search lua-dbus --server=https://luarocks.org/dev
然后安装命令:
luarocks install lua-dbus --server=https://luarocks.org/dev
所以你没有做错什么,只是网站不够清晰。
我想安装这个库:
https://luarocks.org/modules/dodo/lua-dbus
我愿意
luarocks search lua-dbus
有 0 个结果。
sudo luarocks install lua-dbus
也没有安装任何东西。
只有这个库有问题,因为我可以在luarocks上搜索其他库,例如
luarocks search socket
给出了很多匹配项。
我做错了什么?
该库(以及它所依赖的库)还没有版本发布,因此它们被标记为 DEV
(您可以在 "Versions" section 中看到)。
这些库不会出现在搜索中,或者默认情况下无法安装。您需要在搜索中添加 "development" 存储库:
luarocks search lua-dbus --server=https://luarocks.org/dev
然后安装命令:
luarocks install lua-dbus --server=https://luarocks.org/dev
所以你没有做错什么,只是网站不够清晰。