欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue执行npm install报错: Can‘t find Python executable “python“, you can set the PYTHON env variable

程序员文章站 2022-06-15 12:37:15
...

一、描述

从网上下载的一个Vue模板项目,导入VsCode,执行npm install命令后,报错了,报错的信息是node-sass安装失败,同时提示需要python环境的错误信息,这是因为安装node-sass失败了,而node-sass依赖于Python环境,node-sass安装失败是因为默认是从国外线路下载,这些大家都是知道的,在网速不好的情况下,失败率很高。

1.核心错误日志如下:

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

2.控制台错误信息截图: vue执行npm install报错: Can‘t find Python executable “python“, you can set the PYTHON env variable

二、原因

  • npm源速度慢。
  • node-sass除了npm部分的代码,还会下载二进制文件binding.node,默认源是github,国内访问较慢,特殊时期甚至无法访问。
  • node版本与node-sass版本不兼容。
  • 缓存中binding.node版本不一致。
  • 安装失败后重新安装。
  • 提示没有安装python、build失败,假如拉取binding.node失败,node-sass会尝试在本地编译binding.node,过程就需要python。

三、解决方式

切换镜像源,切换为国内的淘宝镜像源

1.设置全局淘宝镜像源

npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/

2.安装node-sass

npm install node-sass

3. 启动vue项目

npm run dev

将镜像源设置为国内的淘宝之后,再随后执行npm run dev 启动开发环境服务即正常,完美解决问题。

四、参考

  1. 为什么node-sass总是安装失败?
  2. node-sass安装失败的解决办法?
相关标签: Vue从零开始