【node】 npm install 报错:code 128

简介: 【node】 npm install 报错:code 128

前言

今天上班后端跟我说,她没事的时候在网上找了两个开源项目没跑起来让我帮忙看看(项目一)…(此处省略1000字)…。拿到项目后第一时间找package.jsonreadme.md。emmm…serve命令和npm,搜嘎npm run serve嘛,简单!欸?怎么报错?

npm ERR! code 128
npm ERR! An unknown git error occurred
PS D:\HT-Code\vue-element-admin> npm install 
npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.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\test\AppData\Local\npm-cache\_logs\2021-11-07T04_40_27_971Z-debug.log

一脸懵逼,赶紧找度娘

分析

我认为问题出现在这里

npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git

估摸着是没有连接远程仓库配置ssh吧

解决

在百度谷歌查了,很多重复的都是执行这两行命令

git config --global http.sslverify "false"
git config --global url."https://".insteadOf git://

然后跟着cv放到Vscode控制台执行,后续再执行npm install居然没有报错了。。神奇


下班~

目录
相关文章
|
1月前
|
JavaScript 内存技术
node与npm版本对应关系以及使用nvm管理node版本
node与npm版本对应关系以及使用nvm管理node版本
205 0
|
1月前
|
缓存
npm install 报 npm ERR! cb()never called!的错误
npm install 报 npm ERR! cb()never called!的错误
17 0
|
11天前
|
缓存 资源调度
npm install安装时一直idealTree:npm: sill idealTree buildDeps解决方案(亲测有效)
npm install安装时一直idealTree:npm: sill idealTree buildDeps解决方案(亲测有效)
22 2
|
1月前
|
内存技术
node版本与npm版本不对应的解决方案
node版本与npm版本不对应的解决方案
25 0
|
7月前
npm install 报错 npm ERR! puppeteer@1.20.0 install: `node install.js`
npm install 报错 npm ERR! puppeteer@1.20.0 install: `node install.js`
193 0
|
JavaScript
npm install less-loader报错 npm查看版本号
npm install less-loader报错 npm查看版本号
473 0
npm install less-loader报错 npm查看版本号
|
JavaScript
vue-element-admin 安装依赖 npm install 报错ERESOLVE unable to resolve dependency tree解决方案
vue-element-admin 安装依赖 npm install 报错ERESOLVE unable to resolve dependency tree解决方案
|
1月前
|
缓存 网络虚拟化
解决 npm install 报错的常见问题
解决 npm install 报错的常见问题
248 0
|
5月前
|
前端开发
React踩坑-安装npm install fetch-jsonp报错
React踩坑-安装npm install fetch-jsonp报错
35 0
|
5月前
|
JavaScript
vue踩坑记-在项目中安装依赖模块npm install报错
vue踩坑记-在项目中安装依赖模块npm install报错
50 0