generator-karma does not satisfy its siblings' peerDependencies requirements

后端 未结 6 616
野性不改
野性不改 2021-02-03 22:46

The same notorious error

npm ERR! peerinvalid The package generator-karma does not satisfy its siblings\' peerDependencies requirements!
npm ERR! peerinvalid Peer ge         


        
6条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-03 23:07

    I had permissions issues with some of the directories under /usr/local/lib/node_modules. I must have installed some packages with sudo but most under my own user id. I solved this issue on a Mac with these commands:

    sudo chown -R `whoami` /usr/local/lib/node_modules/
    sudo chgrp -R admin /usr/local/lib/node_modules/
    

提交回复
热议问题