NPM cannot install dependencies - Attempt to unlock something which hasn't been locked

前端 未结 9 1600
独厮守ぢ
独厮守ぢ 2020-12-02 03:59

I\'ve been trying to run an npm install on my package.json file, but I\'m having a lot of trouble. It keeps saying \"Error: Attempt to unlock XXX, which hasn\'t been locke

9条回答
  •  天涯浪人
    2020-12-02 04:30

    The following command should fix permission issues:

    sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}
    

    You can read about another officially recommended solutions here:

    https://docs.npmjs.com/getting-started/fixing-npm-permissions

提交回复
热议问题