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
The assets/init.d/raspberry-wifi-conf file assumes that node.js is installed at /usr/bin/node. This will not be the case if it was installed via nvm or other non-repo install. see line 19: sudo /usr/bin/node server.js &
The solution is to either look for node.js on PATH or require the user to create a symlink, for example: sudo ln -s "$NVM_DIR/versions/node/$(nvm version)/bin/node" "/usr/bin/node"
or, add a #! for node.js to server.js and just run server.js directly, line 19: sudo server.js &
The text was updated successfully, but these errors were encountered:
The assets/init.d/raspberry-wifi-conf file assumes that node.js is installed at /usr/bin/node. This will not be the case if it was installed via nvm or other non-repo install. see line 19:
sudo /usr/bin/node server.js &
The solution is to either look for node.js on PATH or require the user to create a symlink, for example:
sudo ln -s "$NVM_DIR/versions/node/$(nvm version)/bin/node" "/usr/bin/node"
or, add a
#!
for node.js to server.js and just run server.js directly, line 19:sudo server.js &
The text was updated successfully, but these errors were encountered: