首页 > 编程语言 >node-sass相关问题

node-sass相关问题

时间:2022-12-29 10:44:06浏览次数:62  
标签:node sass Python python gyp 相关 find

早期的node-sass依赖python等各种环境 要求十分严格,因此会出现很多问题。特此总结下

缺少node-saa模块

Cannot find module 'node-sass'

安装即可

yarn add node-sass

默认安装的是最新的版本,但是可能会出问题。

Node Sass version 8.0.0 is incompatible with ^4.0.0

因为它与nodejs版本有对应关系,参考对应版本即可。

缺少python

安装完成后 启动可能还会出现如下问题。

gyp ERR! find Python gyp ERR! find Python Python is not set from command line or npm configuration gyp ERR! find Python Python is not set from environment variable PYTHON

这是因为早期的node-sass依赖python, 解决办法,在超级管理员权限下 打开命令行工具:

npm install -g node-gyp
npm install --global --production windows-build-tools

如果依然不行 可以手动尝试安装python,并且配置环境变量

标签:node,sass,Python,python,gyp,相关,find
From: https://www.cnblogs.com/dingshaohua/p/17011896.html

相关文章