VUE项目启动报错--Error: EPERM: operation not permitted, unlink

今天在打开之前的一个VUE的小Demo想运行一下时,发现执行npm install 命令安装组件和依赖时失败了。查看了一下生成的debug日志。看到最下方有几行报错信息如下。

15555 error code EPERM
15556 error syscall unlink
15557 error path F:\vue\vuedemo06\node_modules\.staging\html-entities-f752483c\LICENSE
15558 error errno -4048
15559 error Error: EPERM: operation not permitted, unlink 'F:\vue\vuedemo06\node_modules\.staging\html-entities-f752483c\LICENSE'
15559 error  [OperationalError: EPERM: operation not permitted, unlink 'F:\vue\vuedemo06\node_modules\.staging\html-entities-f752483c\LICENSE'] {
15559 error   cause: [Error: EPERM: operation not permitted, unlink 'F:\vue\vuedemo06\node_modules\.staging\html-entities-f752483c\LICENSE'] {
15559 error     errno: -4048,
15559 error     code: 'EPERM',
15559 error     syscall: 'unlink',
15559 error     path: 'F:\\vue\\vuedemo06\\node_modules\\.staging\\html-entities-f752483c\\LICENSE'
15559 error   },

按照报错中关键词进行百度,Error: EPERM: operation not permitted, unlink

找到解决方法:

输入命令: npm install --no-optional

执行成功后再输入  npm run dev  启动项目即可。

 

 

喜欢的朋友点点关注哦~~

你可能感兴趣的:(VUE,VUE,VUE项目启动报错解决)