npm 安装错误和 npm WARN 已弃用
npm Install Errors & npm WARN deprecated
无法安装来自 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 install
时遇到问题
$ 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
终于明白了。
npm install 在我的 windows 系统中工作正常。
删除node_modules目录和包-lock.json然后使用此命令清除缓存
npm cache clear --force
并且我删除了 npm 和 npm-cache 文件夹
C:\Users\USERNAME\AppData\Roaming\npm
和
C:\Users\USERNAME\AppData\Roaming\npm-缓存
然后我尝试安装 npm
npm install
我希望这对某人有所帮助。
如果您遇到同样的问题,请尝试在 Netlify 上部署您的应用程序,然后您将看到构建日志,以便您修复代码!
无法安装来自 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 install
时遇到问题$ 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
终于明白了。 npm install 在我的 windows 系统中工作正常。
删除node_modules目录和包-lock.json然后使用此命令清除缓存
npm cache clear --force
并且我删除了 npm 和 npm-cache 文件夹 C:\Users\USERNAME\AppData\Roaming\npm 和 C:\Users\USERNAME\AppData\Roaming\npm-缓存
然后我尝试安装 npm
npm install
我希望这对某人有所帮助。
如果您遇到同样的问题,请尝试在 Netlify 上部署您的应用程序,然后您将看到构建日志,以便您修复代码!