Skip to content

Commit

Permalink
docs: fix typo and add some setup steps (#25)
Browse files Browse the repository at this point in the history
* Added installation steps for ROS 2 and some dependencies

* fixed typo
  • Loading branch information
ajinori3 authored Jun 16, 2024
1 parent a0c7000 commit 641c8ff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/course/index.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@

## 環境構築

まず、 Autoware の動作に必要な ROS 2 をインストールします。
[ROS 2 Documentation](https://docs.ros.org/en/humble/Installation/Ubuntu-Install-Debians.html) の手順にしたがってインストールしてください。

つづけて、いくつかの開発支援ツールセットもインストールします。

```bash
# Install rosdep
sudo apt install python3-rosdep
# Install vcstool
sudo apt install python3-vcstool
# Install colcon
sudo apt install python3-colcon-common-extensions
```


任意のディレクトリにて入門講座のリポジトリをクローンし、ビルドを行ってください。

```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/course/velocity_planning.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ ros2 bag record -o velocity.bag /localization/kinematic_state

PlotJugglerは以下のコマンドで、インストールすることができます。
```bash
sudo apt install ros-humble plotjuggler-ros
sudo apt install ros-humble-plotjuggler-ros
```

そして以下のコマンドでPlotJugglerを起動します。
Expand Down

0 comments on commit 641c8ff

Please sign in to comment.