ERROR in Cannot find module 'node-sass'(最全解决方案)
一、错误描述在vue前端项目的开发中,遇到错误 ERROR in Cannot find module 'node-sass':表示找不到node-sass模块。是因为你没安装node-sass模块或者安装时用的cnpm而不是npm,导致版本过低。可以通过npm install node-sass 或cnpm install node-sass@latest 进行安装。二、解决方案1. 如果你用的
目录
一、错误描述
在vue前端项目的开发中,遇到错误 ERROR in Cannot find module 'node-sass':
表示找不到node-sass模块。
是因为你没安装node-sass模块或者安装时用的cnpm而不是npm,导致版本过低。
可以通过npm install node-sass 或 cnpm install node-sass@latest 进行安装。
二、解决方案
1. 如果你用的是cmd:
输入命令 npm install node-sass 或 cnpm install node-sass@latest 直接进行安装即可。
2. 如果你用的是Windows Powershell:
执行cnpm 命令时,可能会提示下图的错误:
cnpm : 无法加载文件 C:\Users\hp\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本。
解决方法:
1.
以管理员身份运行power shell
2.
输入set-ExecutionPolicy RemoteSigned
然后输入A 回车
(参考:https://blog.csdn.net/qq_36949713/article/details/104247267)
总结:建议直接用cmd
有问题欢迎来微信找我!
微信搜索:acoolgiser,一起学习成长,交个朋友!^_^
或者直接扫描
更多推荐
所有评论(0)