What worked for me getting LaserWeb 3 up on Raspbian on a Pi3: 1.

What worked for me getting LaserWeb 3 up on Raspbian on a Pi3:

  1. apt-get install make g++ libssl-dev git
  2. cd /tmp
    wget https://nodejs.org/dist/v4.4.5/node-v4.4.5.tar.gz
    tar -xvf node-v4.4.5.tar.gz
    cd node-v4.4.5
  3. ./configure && make -j4 (4=number of cores)
  4. sudo make install

Then the normal git checkout laserweb3, npm install, and node server-smoothie.

I may have already run: sudo apt-get install build-essential python g++ make from the original LaserWeb on this machine. So still gotta test that.

Reason I went with that method was because the Pi3 is supposed to be armv8; downloaded the precomplied armv8 binaries and they wouldn’t run. Figures, that Raspbian would still run on armv6 - boooooo.