[Vuejs]-Laravel with Vue getting some error after run npm install

0👍

I already solve this issue by downgrade note js

nvm install 13.14.0

nvm use 13.14.0

and remove node_module and package.lock.josn

npm install

Note: I use Laradock with Docker

-1👍

first, delete node_modules folder.

then run => npm config set python "C:\Python27\python.exe"

and the last one is running => npm install –global windows-build-tools

-1👍

You have two options here for solve your problem regarding python module path.

Option 1 :
You need to install windows-build-tools and then Your error will be solved. Just run this command in your terminal.

npm i windows-build-tools

Option 2 :
You just need to Install Python In Your PC ( If Not Installed ) and then add python to your PATH variable. Using environment variable.

npm config set python /path/to/python.exe 

Leave a comment