gyp ERR stack Error: Can ‘t find Python executable python2.7, you can set the PYTHON env variable.

在公司部署前端项目的时候,npm install 安装依赖的时候出现了问题,发现是node-sass这个包下载失败
在这里插入图片描述gyp ERR stack Error: Can ‘t find Python executable python2.7, you can set the PYTHON env variable._第1张图片
我在想是不是没安装什么呢,因为我是面向百度编程的,所以就百度了一下,发现需要安装编译环境

npm install -g node-gyp 
npm install --global --production windows-build-too     (这条命令需管理员运行)

然后卸载安装失败的包

npm uninstall node-sass

然后重新安装

npm install sass -i

最后npm install , npm run dev 直接运行就好了。

你可能感兴趣的:(报错,npm,node.js,python)