Starting Appium server programmatically on MAC

Hey guys,
So I have another Mac I try to work with to start an Appium session. While with the first Mac it works well the newer doesn’t allow me to initiate the Appium programmatically. Here’s the code I am using:
ssh.RunCommand("/usr/local/bin/forever start /Applications/Appium.app/Contents/Resources/node_modules/appium/bin/appium.js --address 0.0.0.0 --port 4723 --log-level debug --device-name \"iPhone 6\" --platform-name iOS --platform-version \"8.4\" --app \"/Applications/my.app\" --browser-name iOS -l --log /Library/Logs/Appium/current.log");

For some reason it tells me: “env: node: No such file or directory”
Now, I am guessing that there’s some problem running the “forever” file. But I am not sure what stops it from running properly…
Thanks!