Not compatible with your operating system or architecture: fsevents@1.0.11

前端 未结 7 1665
庸人自扰
庸人自扰 2021-01-30 19:33

I\'m using Ubuntu 15.04. While running the following command:

npm install fsevents

I\'m getting following error:

npm WARN optio         


        
7条回答
  •  北海茫月
    2021-01-30 20:01

    I was facing the same issue with this dependecy when building other application.

    Just for the sake of knowledge and to people who are not well used to NPM, and thus uncertain about how their applications will behave:

    Since fsevents is an API in OS X allows applications to register for notifications of changes to a given directory tree. Running:

    npm install --no-optional

    Will do the trick, with no drawbacks.

提交回复
热议问题