How to cope with implicit dependencies? #440
Unanswered
sschneider-ihre-pvs
asked this question in
Help
Replies: 2 comments 7 replies
-
With an install script, you could do one of the following: tea +neovim.io +nodejs.org +npmjs.com +python.org +rust-lang.org _install_script_name_ But, more likely what you want is: for x in nvim node npm python rust; do
ln -s $(which tea) /usr/local/bin/$x;
done
_install_script_name_ |
Beta Was this translation helpful? Give feedback.
5 replies
-
What's the context here? If lunar vim is packaged with tea then all the dependencies are added to the Are you trying to use lunar vim without packaging it for tea as a user or as someone trying to make an install script for lunar vim use tea if it is available? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Lets take Lunarvim as an example. Lunarvim installscript will look for Neovim like
command -v nvim
if nvim is installed with tea it will not find it since it is not in the PATH. also, if you tick the optional installs it would need nodejs and npm, and python and rust along the way.How do I make this work with tea?
Beta Was this translation helpful? Give feedback.
All reactions