npm install 报错Host key verification failed. npm ERR! fatal: Could not read from remote repository.
时间: 2023-05-27 10:06:50 浏览: 259
npm install 报错解决方法
5星 · 资源好评率100%
这个错误通常是由于ssh连接失败引起的。可以尝试以下步骤解决该问题:
1. 确认你的网络连接正常,能够访问互联网。
2. 确认你的ssh配置正确,可以尝试使用ssh命令连接远程仓库。
3. 删掉~/.ssh/known_hosts文件,重新执行npm install。
4. 尝试使用https连接仓库,可以通过以下命令配置:
```
npm config set registry https://registry.npmjs.org/
```
或者在package.json文件中配置:
```
"registry": "https://registry.npmjs.org/"
```
阅读全文