Gulp npm安装错误& npm WARN已过时

s71maibg  于 2022-12-08  发布在  Gulp
关注(0)|答案(2)|浏览(178)

无法安装node.js 11.15.0的gulp。我也尝试了10.x版本,它抛出了同样的错误。

$ npm install -g gulp-cli
npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated

changed 265 packages, and audited 266 packages in 57s

6 packages are looking for funding
  run `npm fund` for details

3 low severity vulnerabilities

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

谁能帮我安装Gulp?
我尝试删除node_modules目录,然后使用"npm cache clear --force"命令清除该高速缓存,但没有成功。
此外,当我运行npm安装时出现问题

$ npm install
npm ERR! code 1
npm ERR! path C:\..........\node_modules\node-sass
npm ERR! command failed
....
npm ERR! gyp ERR! node -v v11.15.0
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok
npm ERR! Build failed with error code: 1
f2uvfpb9

f2uvfpb91#

最后我得到了它。npm安装在我的windows系统中工作正常。
使用以下命令删除node_modules目录和package-lock.json,然后清除该高速缓存

npm cache clear --force

并且我删除了npm & npm缓存文件夹C:\用户\用户名\应用程序数据\漫游\npmC:\用户\用户名\应用程序数据\漫游\npm缓存
然后我尝试安装npm

npm install

我希望这能对某人有所帮助。

vfh0ocws

vfh0ocws2#

如果你也遇到同样的问题,尝试在Netlify上部署你的应用程序,然后你会看到构建日志,这样你就可以修复你的代码!

相关问题