Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md - Add missing CMake dependency #4

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ git submodule update --init --recursive

Dependencies (Recommended: Ubuntu 22.04):
* [ROS2 Humble](https://docs.ros.org/en/humble/Installation/Ubuntu-Install-Debians.html)
* Python: `sudo apt install python`
* Boost: `sudo apt install libboost-all-dev`
* Proj: `sudo apt install libproj-dev`
* Protobuf (Map Service): `sudo apt install libprotobuf-dev protobuf-compiler`
* Curl (Map Service): `sudo apt install libcurl4-openssl-dev`
* Python ^3.10: `sudo apt install python`
* Boost ^1.74: `sudo apt install libboost-all-dev`
* Proj ^8.2 : `sudo apt install libproj-dev`
* Protobuf ^3.12 (Map Service): `sudo apt install libprotobuf-dev protobuf-compiler`
* Curl ^7.81 (Map Service): `sudo apt install libcurl4-openssl-dev`
* CMake Version ^3.25: [Install via official Kitware repositories](https://apt.kitware.com/)

You should also create the underlay, which is the underlying workspace with ROS2 Tools available. It behaves similarly to a virtual environment and allows having multiple ROS2 versions installed on the system and use a specific one for each project. The underlay can be created automatically for every terminal session or manually at the beginning of a new session like this:
```bash
Expand Down
Loading