npx command not found

前端 未结 8 855
被撕碎了的回忆
被撕碎了的回忆 2020-12-02 21:57

I am working with webpack and I need to execute ./node_modules/webpack/bin/webpack.js using npx. npx webpack would run the webpack bin

8条回答
  •  渐次进展
    2020-12-02 22:31

    npx should come with npm 5.2+, and you have node 5.6 .. I found that when I install node using nvm for Windows, it doesn't download npx. so just install npx globally:

    npm i -g npx
    

    In Linux or Mac OS, if you found any permission related errors use sudo before it.

    sudo npm i -g npx
    

提交回复
热议问题