# Unable to get ROS2 on my Starling 2

Source: https://forum.modalai.com/topic/4570/unable-to-get-ros2-on-my-starling-2
Category: VOXL SDK and Software (https://forum.modalai.com/category/47/voxl-sdk-and-software)
Tags: voxl-sdk
Posted: 2025-07-07 18:16:32 UTC by taiwohazeez
Replies: 3 · Views: 749

## taiwohazeez · 2025-07-07 18:16:32 UTC

Hello, 
I have ubuntu 22.04 (Jammy) on my host pc, I tried cloning voxl-mpa-t0-ros2 repository using git clone https://gitlab.com/voxl-public/voxl-sdk/services/voxl-mpa-to-ros2.git, but i am requested for a gitlab username and password, and I am sure it should be a public access repository. can you assist ? 

Thanks

## Reply by tom (ModalAI staff) · 2025-07-07 23:40:48 UTC

@taiwohazeez The path is https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-mpa-to-ros2

Git will always require a username / password if you're cloning via http

You can set up an SSH key tied to your gitlab account and clone via SSH to get around this

## Reply by taiwohazeez · 2025-07-08 15:50:21 UTC (in reply to tom)

@tom I have been able to clone it using https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-mpa-to-ros2.git , but I have not been able to install ros2 on my voxl2.

So, after cloning the repository, i ran the install deb script using ./install_build_deps.sh qrb5165 sdk-1.5
THen i ran the build script using ./install_build_deps.sh qrb5165 sdk-1.0, but it keeps failing when building px4_msgs.

Am I doing this wrongly? (By the way, i used chatgpt).

## Reply by tom (ModalAI staff) · 2025-07-08 17:30:01 UTC (in reply to taiwohazeez)

@taiwohazeez The build flow should be like this:

```
cd voxl-mpa-to-ros2
git checkout dev
git submodule update --init --recursive
voxl-docker -i qrb5165-emulator
./install_build_deps.sh qrb5165 dev
./build.sh qrb5165 dev
./make_package.sh deb
```
