npm ERR! Error: EPERM: operation not permitted, rename
Solution 1:
In my situation this helped:
Before proceeding to execute these commands close all VS Code instances.
-
clean cache with
npm cache clean --force
-
install the latest version of npm globally as admin:
npm install -g npm@latest --force
-
clean cache with
npm cache clean --force
-
Try to install your component once again.
I hope this fix your issue. If not, you may temporarily disable your antivirus program and try again.
Solution 2:
I got it working when tried npm install with a force option to fetch remote resources even if a local copy exists on disk. Try running
npm install --force
Updated For some of my colleagues this solution was not working. But we tried using yarn instead of npm. It works (faster as well) without any issues all the time
yarn install [package-name]