使用npm安装element-ui报错:npm i element-ui -Snpm ERR! code EPERMnpm ERR! syscall opennpm ERR! path

报错提示:

npm i element-ui -S
npm ERR! code EPERM
npm ERR! syscall open
npm ERR! path D:\Program Files\nodejs\node_cache\_cacache\tmp\9c63664f
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, open 'D:\Program Files\nodejs\node_cache\_cacache\tmp\9c63664f'
npm ERR!  [OperationalError: EPERM: operation not permitted, open 'D:\Program Files\nodejs\node_cache\_cacache\tmp\9c63664f'] {
npm ERR!   cause: [Error: EPERM: operation not permitted, open 'D:\Program Files\nodejs\node_cache\_cacache\tmp\9c63664f'] {
npm ERR!     errno: -4048,
npm ERR!     code: 'EPERM',
npm ERR!     syscall: 'open',
npm ERR!     path: 'D:\\Program Files\\nodejs\\node_cache\\_cacache\\tmp\\9c63664f'
npm ERR!   },
npm ERR!   isOperational: true,
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'open',
npm ERR!   path: 'D:\\Program Files\\nodejs\\node_cache\\_cacache\\tmp\\9c63664f'
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安装element-ui报错:npm i element-ui -Snpm ERR! code EPERMnpm ERR! syscall opennpm ERR! path_第1张图片

 网上找了几个答案后也是迅速解决了问题,第一个是用管理员权限打开终端,由于我使用了vscode的终端,就用了另一种方式:

在运行 npm install 命令时,添加 --no-cache 参数,这会禁用缓存。

执行命令:

npm install element-ui -S --no-cache。

果然成功了

使用npm安装element-ui报错:npm i element-ui -Snpm ERR! code EPERMnpm ERR! syscall opennpm ERR! path_第2张图片

你可能感兴趣的:(问题解决,npm,前端,node.js)