Skip to content

Instantly share code, notes, and snippets.

@RobyCigar
Created January 1, 2022 05:07
Show Gist options
  • Save RobyCigar/0cd56221b80ab6134e71b2a5bef6534c to your computer and use it in GitHub Desktop.
Save RobyCigar/0cd56221b80ab6134e71b2a5bef6534c to your computer and use it in GitHub Desktop.
create symbolic link
it happens because the node executable is not found in /usr/bin. So follow the steps:
find node:
whereis node
in my case: node: /home/<my_user>/.nvm/versions/node/v8.9.4/bin/node
make a symbolic link for node:
sudo ln -s /home/<my_user>/.nvm/versions/node/v8.9.4/bin/node /usr/bin/node
It's done!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment