diff --git a/install-moveit2/binary/index.markdown b/install-moveit2/binary/index.markdown
index 9a5015c6..b91a63e0 100644
--- a/install-moveit2/binary/index.markdown
+++ b/install-moveit2/binary/index.markdown
@@ -7,7 +7,7 @@ title: MoveIt 2 Binary Install
MoveIt 2 Binary Install
We're thrilled you're ready to start using MoveIt 2!
- Binary installation for MoveIt 2 are available for the ROS 2 distributions Jazzy and Rolling on Ubuntu 24.04, and Humble and Iron on Ubuntu 22.04.
+ Binary installation for MoveIt 2 are available for the ROS 2 distributions Jazzy and Rolling on Ubuntu 24.04, and Humble on Ubuntu 22.04.
Select your preferred ROS 2 distribution below:
@@ -23,19 +23,6 @@ title: MoveIt 2 Binary Install
-
-
-
-
-
-
-
-
@@ -112,50 +99,6 @@ title: MoveIt 2 Binary Install
-
-
- Prereq: Install
-
-
- Follow all the instructions to install ROS 2 Iron .
-
-
-
- Install on Ubuntu 22.04
-
-
- ROS 2 Iron
-
-
- sudo apt install ros-iron-moveit
-
-
-
- Middleware
-
-
- We recommend CycloneDDS as a middleware. Note: this makes all nodes started using this RMW incompatible with any other nodes not using Cyclone DDS.
- sudo apt install ros-$ROS_DISTRO-rmw-cyclonedds-cpp
- export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
- You may want to add `export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp` to your ~/.bashrc to source it automatically.
-
-
-
- Quick Start
-
-
- Start planning in Rviz with:
-
-
-
- MoveIt 2 Getting Started Tutorial
-
-
-
-
-
-
-
Prereq: Install
diff --git a/install-moveit2/source/index.markdown b/install-moveit2/source/index.markdown
index 5b2f40ea..227dcbe9 100644
--- a/install-moveit2/source/index.markdown
+++ b/install-moveit2/source/index.markdown
@@ -14,13 +14,12 @@ Installing MoveIt 2 from source is the first step in contributing new features,
MoveIt is mainly supported on Linux, and the following build instructions support in particular:
- Ubuntu 22.04 / ROS 2 Humble Hawksbill (LTS)
-- Ubuntu 22.04 / ROS 2 Iron Irwini (stable)
- Ubuntu 24.04 / ROS 2 Jazzy Jalisco (Recommended LTS)
- Ubuntu 24.04 / ROS 2 Rolling Ridley (Continuously Updated. Use this to access latest features.)
In the future, we would like to expand our source build instructions to more OS's, please contribute instruction write-ups to [this repo](https://github.com/moveit/moveit.ros.org).
-These instructions assume you are running on Ubuntu 24.04 (Jazzy, Rolling). However, the same build commands should apply to Humble and Iron builds on Ubuntu 22.04.
+These instructions assume you are running on Ubuntu 24.04 (Jazzy, Rolling). However, the same build commands should apply to Humble builds on Ubuntu 22.04.
## Prerequisites
@@ -28,8 +27,8 @@ These instructions assume you are running on Ubuntu 24.04 (Jazzy, Rolling). Howe
Install ROS 2 [Jazzy](https://docs.ros.org/en/jazzy/Installation/Ubuntu-Install-Debians.html), or [Rolling](https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Debians.html) following the installation instructions.
-We recommend Jazzy as the latest and stable LTS distribution, or alternatively Rolling for continuous development including contributions to MoveIt 2. Currently the [main branch](https://github.com/moveit/moveit2) supports Rolling, Jazzy, Iron, and Humble (note that Iron and Humble will be phased out once incompatible, as we only ensure support for the latest LTS versions).
-However, since the main branch is used for development, the MoveIt API is not stable. For stable versions, please use the distro branches [humble](https://github.com/moveit/moveit2/tree/humble), or [iron](https://github.com/moveit/moveit2/tree/iron). A stable branch for Jazzy will be established soon as well.
+We recommend Jazzy as the latest and stable LTS distribution, or alternatively Rolling for continuous development including contributions to MoveIt 2. Currently the [main branch](https://github.com/moveit/moveit2) supports Rolling, Jazzy, and Humble (note that Humble will be phased out once incompatible, as we only ensure support for the latest LTS versions).
+However, since the main branch is used for development, the MoveIt API is not stable. For stable versions, please use the distro branches [humble](https://github.com/moveit/moveit2/tree/humble), or [jazzy](https://github.com/moveit/moveit2/tree/jazzy)
MoveIt 2 source installation requires various other tools apart from what is already mentioned in the ROS 2 install docs.
@@ -72,13 +71,13 @@ Create a colcon workspace:
Download the repository and install any dependencies. Issue the relevant commands for your ROS distribution.
-### Humble, Iron -stable
+### Humble, Jazzy -stable
git clone https://github.com/moveit/moveit2.git -b $ROS_DISTRO
for repo in moveit2/moveit2.repos $(f="moveit2/moveit2_$ROS_DISTRO.repos"; test -r $f && echo $f); do vcs import < "$repo"; done
rosdep install -r --from-paths . --ignore-src --rosdistro $ROS_DISTRO -y
-### Rolling, Jazzy, Iron, Humble -unstable
+### Rolling, Jazzy, Humble -unstable
git clone https://github.com/moveit/moveit2.git -b main
for repo in moveit2/moveit2.repos $(f="moveit2/moveit2_$ROS_DISTRO.repos"; test -r $f && echo $f); do vcs import < "$repo"; done