dave_bulac
dave_bulac

Reputation: 45

Cann't make installation of npm in my Laravel Project

I need a Help.I have made a Laravel Project and I want to install npm in it. I am typing "npm install" but I am getting following Error.enter image description here

I have installed last version of python, npm and node. But when I am trying to install fibers I am getting following: enter image description here

If someone knows what going on here please write it.

Thanks for attention.

Upvotes: 0

Views: 219

Answers (1)

Sehdev
Sehdev

Reputation: 5662

It seem you are using windows. For that you need to install required tools first. You can do this using Microsoft's windows-build-tools by executing the below command

npm install -g windows-build-tools

Then npm install

Microsoft -> Nodejs Guidline

Upvotes: 1

Related Questions