Reputation: 45
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.
I have installed last version of python, npm and node. But when I am trying to install fibers I am getting following:
If someone knows what going on here please write it.
Thanks for attention.
Upvotes: 0
Views: 219
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
Upvotes: 1