解决 Error: Can't find Python executable "python", you can set the PYTHON env variable
# 问题
> 我们在执行` npm install ` 或 `yarn`命令的时候有时会遇到错误
```sh
Error: Can't find Python executable "python", you can set the PYTHON env variable
```
进而导致安装部分包错误,今天带大家简单快捷地100%解决这个问题
# 解决方法
- windows 平台下,管理员权限执行以下命令,安装完即可:
```sh
npm install --global --production windows-build-tools
```
- 其他平台,访问 [https://github.com/nodejs/node-gyp](https://github.com/nodejs/node-gyp)
```sh
npm install --global node-gyp
```