本文主要是介绍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项目启动报错--Error: EPERM: operation not permitted, unlink的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!