我已经使用命令安装了 Lapis 框架:
luarocks install lapis --local
它让我成功安装:
Updating manifest for /home/Oman/.luarocks/lib/luarocks/rocks
lapis 1.5.0-2 is now built and installed in /home/Oman/.luarocks (license: MIT)
当我尝试创建一个新项目后:
[Oman@Oman ~]$ lapis new
并得到错误:
-bash: lapis: command not found
为什么我会得到这个?
答案1
我对安装程序一点也不熟悉luarocks
(我希望来自 EPEL),但我怀疑它安装了一个名为lapis
中某处的可执行文件/home/Oman/.luarocks
,如输出所示。也许在/home/Oman/.luarocks/bin
?如果你想让它在没有完整路径的情况下工作,你必须将可执行文件的目录添加到$PATH
shell 的 rc 文件中的变量中(例如 ~/.bash_profile)。