项目过程中经常会遇到 errno -4048 的问题
cross-spawn-async@2.2.5: cross-spawn no longer requires a build toolchain, use it instead
npm ERR! path C:\Program Files\nodejs\node_global\node_modules
npm ERR! code EPERM
npm ERR! errno -4048
npm ERR! syscall mkdir
npm ERR! Error: EPERM: operation not permitted, mkdir 'C:\Program Files\nodejs\node_global\node_modules'
npm ERR! { Error: EPERM: operation not permitted, mkdir 'C:\Program Files\nodejs\node_global\node_modules'
npm ERR! cause:
npm ERR! { Error: EPERM: operation not permitted, mkdir 'C:\Program Files\nodejs\node_global\node_modules'
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'mkdir',
npm ERR! path: 'C:\\Program Files\\nodejs\\node_global\\node_modules' },
npm ERR! stack: 'Error: EPERM: operation not permitted, mkdir \'C:\\Program Files\\nodejs\\node_global\\node_modules\'',
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'mkdir',
npm ERR! path: 'C:\\Program Files\\nodejs\\node_global\\node_modules',
npm ERR! parent: '@vue/cli-ui' }
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 (though this is not recommended).
// 再次以root/Administrator的身份发出该命令(尽管不建议这样做)
方式一、以管理员身份运行,确实能解决很多问题
方式二、这个问题其实是缓存的问题,清理下缓存就行,不用管理员权限
方法1、
需要删除npmrc文件。
强调:不是nodejs安装目录npm模块下的那个npmrc文件
而是在C:\Users{账户}\下的.npmrc文件..
方法2、
或者直接用命令清理就行,控制台输入:
npm cache clean --force
网友评论