npm error
5t0rmr1d3r opened this issue · 2 comments
5t0rmr1d3r commented
FinlayDaG33k commented
This means nodejs
is not installed.
Assuming you have a x86_64 installation of Ubuntu (and not ARM
, SystemZ
or PPC
) follow these instructions:
- run
wget https://nodejs.org/dist/v9.8.0/node-v9.8.0-linux-x64.tar.xz
(to download the9.8.0
binaries) - run
tar xvf node-v9.8.0-linux-x64.tar.xz
(extract the binaries) - run
cd node-v9.8.0-linux-x64
(enter the directory)
Then run the following commands as root to copy everything to the right place:
cp -R bin /usr
cp -R include /usr
cp -R lib /usr
cp -R share /usr
then rerun npm install
5t0rmr1d3r commented
solved, thank you!