rosdep init 错误解决方法

在解决办法中提供了一个ip,如果速度不够快,或者ip不能用了,你可以自己按照上面的方法更换ip,ip查询地址:
https://site.ip138.com/raw.githubusercontent.com/
进入网站输入:raw.githubusercontent.com
你就会看到IP地址了,就可以做接下来的工作了。

遇到的错误如下

mo@mo-ThundeRobot:~$ sudo rosdep init
ERROR: cannot download default sources list from:
https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/20-default.list
Website may be down.

解决办法
这是由于raw.githubusercontent.com被墙,程序无法下载相应的文件导致的。解决方法就是使得raw.githubusercontent.com能够被正常访问。这个网站被墙的方式是dns污染,所以我们只要能够找到这个网站的正确ip就可以了。
IP 199.232.28.133 raw.githubusercontent.com
IP地址可能会变,可以去这个网址查一下:
查到之后就可以执行:

sudo gedit /etc/hosts

然后把199.232.28.133 raw.githubusercontent.com添加进去,然后保存,然后退出
重新执行sudo rosdep init
此时你可能换过几个IP地址,你的报错内容可能会变成下面这样:

ERROR: default sources list file already exists:
	/etc/ros/rosdep/sources.list.d/20-default.list
Please delete if you wish to re-initialize

这时候你需要执行:

sudo rm /etc/ros/rosdep/sources.list.d/20-default.list

然后再sudo rosdep init

你可能感兴趣的:(笔记,linux)