if you cannot or do not want to change the program you are running. (you can simply change / usr / local / bin / node to / usr / bin / node in this program), an alternative solution is to create a link from your node installation to the path that it is trying to load it.
run this as root:
ln -s /usr/bin/node /usr/local/bin/node
This should solve the problem.
NTN bobvk
source
share