Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.29 KB

File metadata and controls

31 lines (21 loc) · 1.29 KB

Installation

  1. Follow the IGVC Docker Setup Guide to get Docker installed on your host machine.

  2. Run git clone https://github.com/RPI-IGVC-2025/RobotCode2026.git within your WSL or native linux filesystem.

  3. cd to the RobotCode2026 directory

  4. Open the resulting repository in Visual Studio Code (Using code .)

  5. Make sure your host docker engine (In the majority of cases, Docker Desktop) is running.

  6. Use Ctrl+Shift+P to open the command pallete and run Dev containers: Rebuild and Reopen in Container

    • While within the devcontainer, the command will be Dev containrs: Reopen in Container
  7. Verify ROS 2 is working

Open a new terminal in the container and run:

# Check ROS 2 help
ros2 --help
# List installed packages
ros2 pkg list | head
# Test GUI (requires XQuartz running on macOS)
rviz2

You're ready to develop!