@@ -37,29 +37,40 @@ Note that the instructions for Conda and Micromamba are virtually identical apar
3737 ```bash
3838 # Create a ros-noetic desktop environment
3939 micromamba create -n ros_env -c conda-forge -c robostack-noetic ros-noetic-desktop
40+ # Activate the environment
41+ micromamba activate ros_env
42+ # Add the robostack channel to the environemnt
43+ micromamba config append channels robostack-noetic --env
4044 ```
4145 === "ROS 2 Humble"
4246 ```bash
4347 # Create a ros-humble desktop environment
4448 micromamba create -n ros_env -c conda-forge -c robostack-humble ros-humble-desktop
49+ # Activate the environment
50+ micromamba activate ros_env
51+ # Add the robostack channel to the environemnt
52+ micromamba config append channels robostack-humble --env
4553 ```
4654 === "ROS 2 Jazzy"
4755 ```bash
4856 # Create a ros-jazzy desktop environment
4957 micromamba create -n ros_env -c conda-forge -c robostack-jazzy ros-jazzy-desktop
58+ # Activate the environment
59+ micromamba activate ros_env
60+ # Add the robostack channel to the environemnt
61+ micromamba config append channels robostack-jazzy --env
5062 ```
5163
5264 === "ROS 2 Kilted"
5365 ```bash
5466 # Create a ros-kilted desktop environment
5567 micromamba create -n ros_env -c conda-forge -c robostack-kilted ros-kilted-desktop
68+ # Activate the environment
69+ micromamba activate ros_env
70+ # Add the robostack channel to the environemnt
71+ micromamba config append channels robostack-kilted --env
5672 ```
5773
58- ```bash
59- # Activate the environment
60- micromamba activate ros_env
61- ```
62-
6374 ## Installing tools for local development
6475 ```bash title="Default tools to help with local development of ROS packages"
6576 micromamba activate ros_env
0 commit comments