当我尝试在Windows终端上运行“ionic start MyApp”时收到此错误。
我正在使用新机器运行,我已经尝试重新安装nodejs和ionic,但同样的错误一直在发生。
任何人都可以帮助我吗?
npm WARN tar invalid entry
> node-sass@4.9.0 install C:\Users\Felipe\Desktop\Kokua App\KokuaApp1\node_modules\node-sass
> node scripts/install.js
module.js:549
throw err;
^
Error: Cannot find module 'minimatch'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\Users\Felipe\Desktop\Kokua
App\KokuaApp1\node_modules\true-case-path\node_modules\glob\glob.js:44:17)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
npm WARN rollback Rolling back node-pre-gyp@0.10.0 failed (this is probably harmless): EPERM: operation not
permitted, scandir 'C:\Users\Felipe\Desktop\Kokua App\KokuaApp1\node_modules\fsevents\node_modules'
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted
{"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! node-sass@4.9.0 install: `node scripts/install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-sass@4.9.0 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Felipe\AppData\Roaming\npm-cache\_logs\2018-06-13T23_54_19_462Z-debug.log
答案 0 :(得分:1)
尝试安装最新版本的ionic:
$ npm cache verify
$ npm i -g ionic cordova
如果这不起作用,您需要手动安装库minimatch:
$ npm i --save minimatch
答案 1 :(得分:1)
通过以下步骤解决问题:
$ npm uninstall cordova ionic
$ npm cache clean -f
$ npm install npm -g
然后卸载nodejs,重新安装并重新安装ion cordova
$ npm install -g cordova ionic