PGuide-Docs/docs/notes/学习笔记/ROS2/OriginBot开发套件.md
2025-02-25 05:28:58 +08:00

27 lines
725 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: OriginBot开发套件
createTime: 2025/02/25 05:19:11
permalink: /learning-notes/ROS2/origin-bot-toolkit/
icon: https://www.originbot.org/assets/img/favicon.png
---
OriginBot使用与开发过程主要在PC端完成完成以上Ubuntu和ROS2的环境配置后还需要将OriginBot的PC端功能包下载到电脑上并且完成编译便于后续操作使用。
:::steps
1. 创建PC端工作空间
```shell
mkdir -p ~/dev_ws/src
```
2. 下载originbot_desktop和依赖包
OriginBot电脑端的功能包都放置在[originbot_desktop代码仓库](https://gitee.com/guyuehome/originbot_desktop)中:
```shell
cd ~/dev_ws/src
git clone https://gitee.com/guyuehome/originbot_desktop.git
```
3. r
:::