報錯信息:
npm ERR! code EPERM npm ERR! syscall open npm ERR! path C:\Program Files\nodejs\node_cache\_cacache\tmp\9600794e npm ERR! errno -4048 npm ERR! Error: EPERM: operation not permitted, open 'C:\Program Files\nodejs\node_cache\_cacache\tmp\9600794e' npm ERR! [OperationalError: EPERM: operation not permitted, open 'C:\Program Files\nodejs\node_cache\_cacache\tmp\9600794e'] { npm ERR! cause: [Error: EPERM: operation not permitted, open 'C:\Program Files\nodejs\node_cache\_cacache\tmp\9600794e'] { npm ERR! errno: -4048, npm ERR! code: 'EPERM', npm ERR! syscall: 'open', npm ERR! path: 'C:\\Program Files\\nodejs\\node_cache\\_cacache\\tmp\\9600794e' npm ERR! }, npm ERR! isOperational: true, npm ERR! stack: "Error: EPERM: operation not permitted, open 'C:\\Program Files\\nodejs\\node_cache\\_cacache\\tmp\\9600794e'", npm ERR! errno: -4048, npm ERR! code: 'EPERM', npm ERR! syscall: 'open', npm ERR! path: 'C:\\Program Files\\nodejs\\node_cache\\_cacache\\tmp\\9600794e' 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.

讓人摸不着頭腦的報錯
解決方式
簡單粗暴 直接刪文件
方法1:
需要刪除npmrc文件。
強調:不是nodejs安裝目錄npm模塊下的那個npmrc文件
而是在C:\Users{賬戶}\下的.npmrc文件…
注意:這個文件默認是被隱藏,一定要選擇將隱藏取消掉
方法2:
npm cache clean --force’
當刪除之后,我們再去運行,就可以看到,我們的簡單粗暴方式是很有效果的
原文鏈接:https://blog.csdn.net/qq_35457469/article/details/102924524
參考:https://blog.csdn.net/cdw1118/article/details/107247216/
