Vue -- vue项目,执行npm install,出现错误:Can't find Python executable "python", you can set the PYTHON env...

从github中,下载vue项目时,运行npm install ,会出现一下问题:

Can't find Python executable "python", you can set the PYTHON env variable.

 

Vue -- vue项目,执行npm install,出现错误:Can't find Python executable

错误原因:Node.js 在安装模块的时候报错,缺少python环境,因此需要安装python

执行如下命令:

npm install --python=python2.7
npm config set python python2.7 

.如果不是默认安装,需要指定python位置:npm config set python phthon安装路径 ,如npm config set python D:/python/python.exe

 

 

 

你可能感兴趣的:(vue)