美文网首页
npm安装依赖超时

npm安装依赖超时

作者: R_X | 来源:发表于2022-08-09 08:29 被阅读0次

使用新系统安装NPM依赖的时候往往会出现超时的问题,包括但不限于下列错误

npm ERR! code 128
npm ERR! command failed
npm ERR! command git ls-remote ssh://git@github.com/adobe-webplatform/eve.git
npm ERR! git@github.com: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Ailjx\AppData\Local\npm-cache\

解决方法:

# 1、 git config --global http.sslverify "false"
# 2、 git config --global url."https://".insteadOf git://
# 3、npm install --registry=https://registry.npm.taobao.org   (这个是用来替换NPM库的)

相关文章

  • npm安装依赖超时

    使用新系统安装NPM依赖的时候往往会出现超时的问题,包括但不限于下列错误 解决方法:

  • Error while executing: npm ERR!

    npm install 安装依赖超时报错 以上错误可能是git代理的问题 解决方法: 需要开启vpn代理,然后配置...

  • vue

    清除依赖缓存 npm clean cache -f npm uninstall2.安装 依赖 npm ...

  • npm常用命令

    npm uninstall XXX -S 卸载XXX依赖 npm安装依赖【npm install xxx】利用 ...

  • npm

    npm常识 npm ls查看你的文件安装的依赖 npm ls -g 查看全局安装的模块以及依赖 npm init在...

  • 安装gulp

    依赖条件npm: npm相关问题 安装gulp 全局安装 gulp: 作为项目的开发依赖(devDependenc...

  • gulp操作流程

    全局安装:npm install --global gulp 项目依赖安装: npm install --save...

  • RollUp搭建vue开发环境

    安装依赖 新建项目文件夹 初始化npm init -y 安装依赖npm install @babel/preset...

  • VUE + axios 封装

    安装依赖 安装axios npm i axios 安装qs npm i qs 封装 【utils/request....

  • 在Vue里使用G2地图制作省级地图展示各市级数据

    制作效果 一、相关依赖1、npm安装G2 2、npm安装data-set 3、npm安装jquery 4、npm安...

网友评论

      本文标题:npm安装依赖超时

      本文链接:https://www.haomeiwen.com/subject/wwogwrtx.html