0👍
It’s a permission issue. Most likely the node
binary was installed as a user that has different permissions than you think.
Find the user that node
runs as:
ps aux | grep "node"
Then change to that user. Now attempt to make the same symlink. You will receive the same error. Adjust permissions accordingly.
Source:stackexchange.com