npm install时出现的问题Failed at the [email protected] postinstall script

从阿里云上拉取下来项目后,首先使用npm install 命令进行安装所需依赖,意想不到的事情发生了,报出了Failed at the [email protected] postinstall script,这个问题,顿时一脸懵逼;询问前端大佬,给出的反馈是,“没法解决”,这时我有点不知所措了,大佬都说没法解决了。

npm install时出现的问题Failed at the node-sass@4.14.1 postinstall script_第1张图片

 但是我抱着不服输的想法,将node-sass模块依赖给卸载,在重新安装了一下,如下效果:

卸载命令:

npm uninstall node-sass

npm install时出现的问题Failed at the node-sass@4.14.1 postinstall script_第2张图片

npm install时出现的问题Failed at the node-sass@4.14.1 postinstall script_第3张图片

 执行完第一个卸载命令发现还是报错,紧接着又执行了一个重新安装命令;

重新安装命令:

npm i [email protected] --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ --unsafe-perm

npm install时出现的问题Failed at the node-sass@4.14.1 postinstall script_第4张图片

 到此为止,已经没有发现有问题了,可以正常的启动项目了。

npm install时出现的问题Failed at the node-sass@4.14.1 postinstall script_第5张图片

 

希望可以帮助到遇到此问题的猿友们!!!


作者:筱白爱学习!!

欢迎关注转发评论点赞沟通,您的支持是筱白的动力!

你可能感兴趣的:(爱学习→NodeJS,npm,前端)