项目内需安装模块 node-sass@latest
@latest表示获取最新版本
$ npm install node-sass@latest --save-dev //或
$ yarn add --dev node-sass@latest
node-sass在线外网安装存在翻墙不到的情况导致无法下载.node文件。
离线安装,步骤如下:
下载与node版本相对应的.node文件,下载地址:https://github.com/sass/node-sass/releases
设置环境变量(windows系统)
set SASS_BINARY_PATH=D:\win32-x64-57_binding.node
// 查询环境变量
echo %SASS_BINARY_PATH%
或者
yarn config set sass-binary-path e:/web/win32-x64-48_binding.node
- 配置完后,建议清理之前安装的node-sass相关的不完整包,并重新使用命令
npm i node-sass -D --verbose
yarn add --dev node-sass
安装出现以下错误提示
gyp verb ensuring that file exists: C:\Python27\python.exe
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "D:\Python\python.EXE"
发生这种错误说明你的python环境变量与node环境变量不在同一Path中,所以需要设置环境变量到同一Path参数中
最后,祝好运。