创建Vue项目时报错!

Vue CLI v5.0.8
✨  Creating project in F:\program\demodemo\demo.
  Initializing git repository...
⚙️  Installing CLI plugins. This might take a while...

npm ERR! code EPERM
npm ERR! syscall open
npm ERR! path D:\NodeJs\node_cache\_cacache\tmp\fda2c2d5
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, open 'D:\NodeJs\node_cache\_cacache\tmp\fda2c2d5'
npm ERR!  [Error: EPERM: operation not permitted, open 'D:\NodeJs\node_cache\_cacache\tmp\fda2c2d5'] {
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'open',
npm ERR!   path: 'D:\\NodeJs\\node_cache\\_cacache\\tmp\\fda2c2d5'
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:\NodeJs\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. (D:\NodeJs\node_global\node_modules\@vue\cli\lib\util\executeCommand.js:138:16)
    at ChildProcess.emit (node:events:514:28)
    at cp.emit (D:\NodeJs\node_global\node_modules\@vue\cli\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1091:16)
    at ChildProcess._handle.onexit (node:internal/child_process:302:5)

原因是没用用到管理员身份去运行cmd!!!!!!!

你可能感兴趣的:(vue.js,前端)