简体   繁体   中英

npm install fsevents errors

Hello i'am trying to install fsevents whitch .Therefore i use the following versions:

  • Node : 4.2.6

  • NPM : 3.5.2

  • OS : Ubuntu 16.04 LTS

    i 'am executing the statement

npm install fsevents --no-optional --save react-redux

after executing i get the following errors back in the console

npm ERR! Linux 4.4.0-45-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "fsevents" "--no-
optional" "--save" "react-redux"
npm ERR! node v4.2.6
npm ERR! npm  v3.5.2
npm ERR! code EBADPLATFORM

npm ERR! notsup Not compatible with your operating system or  
architecture: fsevents@1.0.15
npm ERR! notsup Valid OS:    darwin
npm ERR! notsup Valid Arch:  any
npm ERR! notsup Actual OS:   linux
npm ERR! notsup Actual Arch: x64

npm ERR! Please include the following file with any support request:
npm ERR!     /home/erik/git/test/npm-debug.log

Please can you help fix this problem.

Manny thanks

Erik

The comments above tell you what you already know. Perhaps you should've phrased this as a question. :-)

Assuming the question is how to prevent fserrors on a non-Mac system, the solution I found is this:

Remove fserrors from your package.json and remove the folder.

rm -r ./node_modules/fserrors

Then run:

npm rebuild

Problem solved.

I added the following to my package.json file:

"optionalDependencies": {
  "fsevents": "2.1.2"
},

Then run npm rebuild (or wait for the next time you need the npm command) and the warning is gone.

What fixed a similar error in my system was following this answer here . Essentially, you can run:

npm i --force

from your terminal, it will install all your dependencies.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM