我试图在视觉工作室代码中从终端窗口安装gulp-sass。
其他依赖项,如autoprefixer,concat等安装没有问题,但gulp-sass一直给我这个错误。
> [email protected] install /usr/local/lib/node_modules/node-sass
> node scripts/install.js
sh: node: command not found
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! [email protected] install: `node scripts/install.js`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
我在Mac上运行VSC。
有什么帮助吗?我对这一切都是全新的,没有编程背景,只是前端开发。
非常感谢
我也有同样的问题。我找到了这个解决方案:
sudo npm install -g [email protected] --unsafe-perm = true --allow-root
我只是改变了部分代码:
sudo npm install gulp-sass --unsafe-perm = true --allow-root
它对我有用。
[Qazxswpoi]
这个确实适合我安装软件包,但是当我启动应用程序时它又失败了
我尝试使用[npm install -g [email protected] --unsafe-perm=true --allow-root
]而不是[yarn install
]该应用程序已成功启动。
我得到了和你一样的解决方案。我尝试在互联网上搜索,然后在这里找到了npm install
然后我安装了:sudo npm install gulp-sass之后:npm审核修复成功