ubuntu24.04 ros2 rosdep相关

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.

<urlopen error <urlopen error [Errno 111] Connection refused>

说明 `rosdep` 无法连接到 GitHub 上的 `rosdistro` 仓库。

这几乎可以肯定是由于**网络连接问题**或**防火墙/代理设置**导致的。以下是详细的排查步骤和解决方案:

可以手动创建 `rosdep` 试图下载的文件。

  1. **创建源列表目录**:

```bash

sudo mkdir -p /etc/ros/rosdep/sources.list.d

```

  1. **手动创建 `20-default.list` 文件**:

使用 `gedit` 或其他编辑器打开该文件。

```bash

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

```

  1. **复制并粘贴以下内容**:

将下面的官方源列表内容复制到打开的 `gedit` 文件中并保存。

复制代码
# os-specific listings first yaml 
https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/osx-homebrew.yaml osx # generic 
yaml https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/base.yaml 
yaml https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/python.yaml 
yaml https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/ruby.yaml 

# newer distributions (Groovy, Hydro, ...) must not be listed anymore, they are being fetched from the rosdistro index.yaml instead

完成以上操作后,`sudo rosdep init` 的工作就已经手动完成了。你可以继续执行后续的 `rosdep update` 命令。

rosdep update 异常

  1. 修订源

sudo gedit /etc/ros/rosdep/sources.list.d/20-default.list 如上,

  1. 修改文件

/usr/lib/python3/dist-packages/rosdistro/init.py

这个修订很重要

复制代码
#DEFAULT_INDEX_URL = 'https://raw.githubusercontent.com/ros/rosdistro/master/index-v4.yaml'
DEFAULT_INDEX_URL = 'https://mirrors.tuna.tsinghua.edu.cn/rosdistro/index-v4.yaml'

rosdep update

复制代码
~/ros2_ws$ rosdep  update 
/usr/bin/rosdep:6: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
  from pkg_resources import load_entry_point
reading in sources list data from /etc/ros/rosdep/sources.list.d
Hit https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/osx-homebrew.yaml
Hit https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/base.yaml
Hit https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/python.yaml
Hit https://mirrors.tuna.tsinghua.edu.cn/rosdistro/rosdep/ruby.yaml
Query rosdistro index https://mirrors.tuna.tsinghua.edu.cn/rosdistro/index-v4.yaml
Skip end-of-life distro "ardent"
Skip end-of-life distro "bouncy"
Skip end-of-life distro "crystal"
Skip end-of-life distro "dashing"
Skip end-of-life distro "eloquent"
Skip end-of-life distro "foxy"
Skip end-of-life distro "galactic"
Skip end-of-life distro "groovy"
Add distro "humble"
Skip end-of-life distro "hydro"
Skip end-of-life distro "indigo"
Skip end-of-life distro "iron"
Skip end-of-life distro "jade"
Add distro "jazzy"
Add distro "kilted"
Skip end-of-life distro "kinetic"
Skip end-of-life distro "lunar"
Skip end-of-life distro "melodic"
Skip end-of-life distro "noetic"
Add distro "rolling"

好运!

相关推荐
MIXLLRED3 天前
Ubuntu22.04 + ROS2 Humble + RealSense D435i 部署VINS-Fusion视觉惯性SLAM
ubuntu·slam·d435i·ros2·humble·vins
G果5 天前
SLAM 开源算法汇总(支持ROS2)
学习·算法·slam·ros2
YQ_018 天前
大幅提速 colcon build —— ccache 缓存 + 并行数控制防爆内存
linux·缓存·机器人·ros2
勤自省8 天前
《RDK X5 ROS 2 Humble 安装与验证:从零到 Hello World》
windows·ubuntu·ssh·ros2
佩洛君11 天前
如何在Ubuntu22.04中安装ROS2-Humble
c++·python·ros2
Watink Cpper12 天前
Ubuntu24.04网络图标消失导致无法上网--排查得到原因:内核和驱动版本不匹配
运维·网络·linux内核·运维开发·debug·ubuntu24.04
Aaron_Chou31314 天前
如何让ROS2编译完后自动source环境变量
ros2·colcon build·自动加载环境变量
kyle~15 天前
工业以太网协议---EtherCAT
开发语言·c++·网络协议·机器人·ros2
kyle~15 天前
机器人广域网通信---MQTT技术
大数据·c++·机器人·ros2
kyle~16 天前
导航---LIO(激光雷达-惯性里程计)算法
c++·算法·机器人·ros2·导航