NPM install fails with node-gyp

前端 未结 9 537
闹比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:34

    for this solved it ( OS X ):

        rm -rf  ~/.node_gyp and
        sudo npm install -g node-gyp@3.4.0
        cd /usr/local/lib sudo ln -s ../../lib/libSystem.B.dylib libgcc_s.10.5.dylib 
        brew install gcc
        npm install
    

提交回复
热议问题