webstorm启动 VUE项目时 报Module build failed: Error: Missing binding XXXXXX(路径)。然后后面提示如下信息是
This usually happens because your environment has changed since running npm install
.Run npm rebuild node-sass --force
to build the binding for your current environment.
即提示 在项目下运行 `npm rebuild node-sass --force 命令重建 node-sass,但是在CMD中执行这个命令后报如下信息,提示找不到 python2.7, 导致无法下载;
但是不想安装python2.7,因为一直用的是3.0版本,最后没办法,用 cnpm i node-sass -s 重新安装了 node-sass,之后重启项目,问题解决,
后来在网上也查到可以指定python版本,但是没有亲测,在这里列上,有机会试试
npm install --python=python2.7
npm config set python python2.7
webstorm启动VUE项目报Module build failed: Error: Missing binding
最新推荐文章于 2023-03-21 15:44:23 发布