Meherab Hossain
Meherab Hossain

Reputation: 1

i am having an error with "create-nuxt-app" command creating a Nuxt project when adding Vuetify and errors are given bellow

build environment--

Windows + OS X instructions here: https://github.com/nodejs/node-gyp

Ubuntu users please run: sudo apt-get install g++ build-essential

RHEL users please run: yum install gcc-c++ and yum groupinstall 'Development Tools' Alpine users please run: sudo apk add python make g++

'nodejs' is not recognized as an internal or external command, operable program or batch file.

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) npm ERR! code ELIFECYCLE

npm ERR! errno 1

npm ERR! [email protected] install: node build.js || nodejs build.js

npm ERR! Exit status 1

npm ERR!

npm ERR! Failed at the [email protected] install script.

npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:

npm ERR! C:\Users\Meherab\AppData\Roaming\npm-cache_logs\2020-01-28T16_59_33_311Z-debug.log

Upvotes: 0

Views: 1260

Answers (1)

Dmitry Kaltovich
Dmitry Kaltovich

Reputation: 2280

Maybe this can help windows users:

npm install --global --production windows-build-tools    
npm install --global node-gyp

Upvotes: 1

Related Questions