当前位置: 代码迷 >> 综合 >> 【truffle init】Got error: getaddrinfo ENOENT raw.githubusercontent.com.
  详细解决方案

【truffle init】Got error: getaddrinfo ENOENT raw.githubusercontent.com.

热度:76   发布时间:2024-02-05 07:30:27.0

 问题描述:在使用truffle init创建项目的时候,出现的如下问题:

Error: Error: Error: Error making request to https://raw.githubusercontent.com/truffle-box/bare-box/master/truffle-box.json. Got error: getaddrinfo ENOENT raw.githubusercontent.com. Please check the format of the requested resource.at Object.unbox (C:\Users\lenovo\AppData\Roaming\npm\node_modules\truffle\build\webpack:\packages\truffle-box\box.js:65:1)at processTicksAndRejections (internal/process/task_queues.js:97:5)

解决方案:

1. 查看raw.githubusercontent.com的真实IP地址

 一开始是使用的网址https://www/ipaddress.com/,结果出现如下的问题,没能查询出来它的IP。

   

 更换使用网址https://ipaddress.com/ip-lookup查看ip时,是可以正常查到的,而且展示出来的内容更为完整(两个网址,各位也可都试一下)。

2. 修改hosts

  第一步:找到C:\Windows\System32\drivers\etc目录下的hosts,用编辑器打开,添加199.232.68.133 raw.githubusercontent.com

注意:编辑器需要使用管理员模式打开,否则无法保存。

保存失败之后,系统会出现如下提示,点击“是”按钮即可。

3. 重新使用truffle init成功创建项目

  相关解决方案