sh: 1: cross-env: Permission denied on laravel mix

后端 未结 5 1952
难免孤独
难免孤独 2021-02-12 13:46

I\'m trying to run npm run dev but the following error occur:

sh: 1: cross-env: Permission denied
npm ERR! code ELIFECYCLE
npm ERR! errno 126
npm ER         


        
5条回答
  •  余生分开走
    2021-02-12 14:22

    This is because of permission issues with global installation of packages, which npm is being denied access.

    To solve this try

    1.

    npm rebuild
    
    npm run watch
    

    Or 2

    rm -Rf node_modules
    
    npm install
    
    npm run watch
    

    Hope it works.

提交回复
热议问题