TechnicPack / solder

Supercharge Your Modpack with Solder
MIT License
27 stars 11 forks source link

npm error #85

Closed 5t0rmr1d3r closed 6 years ago

5t0rmr1d3r commented 6 years ago

tried to update my install, before now, i didnt had npm.

grafik

the errorlog: npm-debug.log

FinlayDaG33k commented 6 years ago

This means nodejs is not installed. Assuming you have a x86_64 installation of Ubuntu (and not ARM, SystemZ or PPC) follow these instructions:

  1. run wget https://nodejs.org/dist/v9.8.0/node-v9.8.0-linux-x64.tar.xz (to download the 9.8.0 binaries)
  2. run tar xvf node-v9.8.0-linux-x64.tar.xz (extract the binaries)
  3. 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:

  1. cp -R bin /usr
  2. cp -R include /usr
  3. cp -R lib /usr
  4. cp -R share /usr

then rerun npm install

5t0rmr1d3r commented 6 years ago

solved, thank you!