尝试在Ubuntu 16.04上安装eslint-config-airbnb时遇到了一些问题
$ npm install eslint-config-airbnb
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.1.2
我尝试安装fsevents,这会产生此错误:
npm ERR! notsup Not compatible with your operating system or architecture: fsevents@1.1.2
npm ERR! notsup Valid OS: darwin
npm ERR! notsup Valid Arch: any
npm ERR! notsup Actual OS: linux
npm ERR! notsup Actual Arch: x64
linux上是否支持eslint-config-airbnb?
答案 0 :(得分:0)
试试这个 - >
rm -rf node_modules/ && npm install && npm rebuild
编辑: rm -rf node_modules/
以递归方式从node_modules
文件夹中删除内容。 npm install
将再次安装所有软件包,并npm rebuild
尝试重建您的项目。
答案 1 :(得分:0)
我在全球范围内安装了它,出于某种原因,这种方法很有用。