You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the plugin using sudo npm install -g --unsafe-perm homebridge-roku. After it installs, I try running homebridge-roku-config, but I get back: bash: homebridge-roku-config: command not found. What should I do?
The text was updated successfully, but these errors were encountered:
That would mean that the global npm bin folder is not on your path. Do you get any output when you run this command?
echo$PATH| tr ":""\n"| grep "node"
If not, then you need to add the npm bin location to your path. Most likely it'll be under the npm prefix, /bin. You can figure out where this is by running npm config get prefix. Take the output of that, append /bin. Double check that homebridge-roku-config lives there by running ls $(npm config get prefix)/bin. Then add that directory to your path.
I installed the plugin using
sudo npm install -g --unsafe-perm homebridge-roku
. After it installs, I try runninghomebridge-roku-config
, but I get back:bash: homebridge-roku-config: command not found
. What should I do?The text was updated successfully, but these errors were encountered: