NPM install fails with node-gyp

前端 未结 9 542
闹比i
闹比i 2021-01-31 04:09

We are having problems running \"npm install\" on our project. A certain file cannot be found :

fatal error C1083: Cannot open include file: \'w         


        
9条回答
  •  悲哀的现实
    2021-01-31 04:56

    Try to install again with --force option:

    npm install --force
    

    If this doesn't work try to update npm globally:

    npm update -g npm 
    

    and try again with the --force option.

提交回复
热议问题