On Monday, July 14, 2014 12:59:24 PM UTC-4, Chris Chau wrote: > > i don't know why my node can't do anything,can't run or install any > software,should i completely uninstall it or am i miss any software like > microsoft visual C++? >
> > C:\Users\Chris\Dropbox\blog>npm install fsevents -g > npm ERR! notsup Unsupported > npm ERR! notsup Not compatible with your operating system or architecture: > fseve > [email protected] > npm ERR! notsup Valid OS: darwin > npm ERR! notsup Valid Arch: any > npm ERR! notsup Actual OS: win32 > npm ERR! notsup Actual Arch: x64 > > npm ERR! System Windows_NT 6.1.7601 > npm ERR! command "C:\Program Files\nodejs\\node.exe" "C:\Program Files\nod > ejs\node_modules\npm\bin\npm-cli.js" "install" "fsevents" "-g" > npm ERR! cwd C:\Users\Chris\Dropbox\blog > npm ERR! node -v v0.10.29 > npm ERR! npm -v 1.4.14 > npm ERR! code EBADPLATFORM > > As the error shows, that particular module is designed for a different platform (OSX/Darwin) and you're on Windows. FSEvents is something that is specific to OSX, so there's no point in trying to (force) use it on any other platform. The module is optional anyway for the first module you installed (hexo), so don't worry about it. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/5d55d2a1-8995-42b7-8b02-8431e81ab6bd%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
