1.错误起因
创建项目架子:
vue create vue-demo1
出现如下错误:
npm ERR! code EPERM
npm ERR! syscall mkdir
npm ERR! path D:\node.js\node_cache\_cacache\index-v5\ae\cb
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, mkdir 'D:\node.js\node_cache\_cacache\index-v5\ae\cb'
npm ERR! [Error: EPERM: operation not permitted, mkdir 'D:\node.js\node_cache\_cacache\index-v5\ae\cb'] {
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'mkdir',
npm ERR! path: 'D:\\node.js\\node_cache\\_cacache\\index-v5\\ae\\cb',
npm ERR! requiredBy: '.'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.
npm ERR! Log files were not written due to an error writing to the directory: D:\node.js\node_cache\_logs
npm ERR! You can rerun the command with `--loglevel=verbose` to see the logs in your terminal
ERROR Error: command failed: npm install --loglevel error --legacy-peer-deps
Error: command failed: npm install --loglevel error --legacy-peer-deps
at ChildProcess.<anonymous> (D:\node.js\node_global\node_modules\@vue\cli\lib\util\executeCommand.js:138:16)
at ChildProcess.emit (node:events:517:28)
at cp.emit (D:\node.js\node_global\node_modules\@vue\cli\node_modules\cross-spawn\lib\enoent.js:34:29)
at maybeClose (node:internal/child_process:1098:16)
at ChildProcess._handle.onexit (node:internal/child_process:303:5)
2.错误分析
因为node.js安装在D盘,导致用户权限不够高,所以我们需要对node.js的用户进行权限设置。
3.解决办法
3.1 右击node.js文件,点击属性,点击安全
注意:node.js文件是下载时存储node的文件
3.2 点击编辑,设置用户权限为允许
3.3 点击确定,成功修改