Where does the exe need to be to run? #2825
-
Hi everyone, I'm setting up lsp for nvim and trying not use any plugins. I cloned the repo and was able to run from the bin directory after running the make script. That was all really easy. But then, to get exe in my path, I tried copying bin/lua-language-server to my /usr/local/bin directory, and when I tried to run it, I got an error This is the first lua project I've tried building from source, so I'm not sure how people typically organize them. I'm really curious about where people usually put the repo and what they add to their paths. Whatever feedback would be really helpful. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think you should use Here is the installation guide from luals's official new wiki page which you might found useful as well 😄 |
Beta Was this translation helpful? Give feedback.
I think you should use
symlink
instead of copying the executable to/usr/local/bin
.ref: https://askubuntu.com/a/1304250
lua-language-server
depends on thescripts/
(lua script) to run, if you just copy the executable it won't work.Here is the installation guide from luals's official new wiki page which you might found useful as well 😄
https://luals.github.io/#neovim-install