@@ -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
@@ -101,29 +112,40 @@ Note that the instructions for Conda and Micromamba are virtually identical apar
101112 ```bash
102113 # Create a ros-noetic desktop environment
103114 conda create -n ros_env -c conda-forge -c robostack-noetic ros-noetic-desktop
115+ # Activate the environment
116+ conda activate ros_env
117+ # Add the robostack channel to the environemnt
118+ conda config --env --add channels robostack-noetic
104119 ```
105120 === "ROS 2 Humble"
106121 ```bash
107122 # Create a ros-humble desktop environment
108123 conda create -n ros_env -c conda-forge -c robostack-humble ros-humble-desktop
124+ # Activate the environment
125+ conda activate ros_env
126+ # Add the robostack channel to the environemnt
127+ conda config --env --add channels robostack-humble
109128 ```
110129 === "ROS 2 Jazzy"
111130 ```bash
112131 # Create a ros-jazzy desktop environment
113132 conda create -n ros_env -c conda-forge -c robostack-jazzy ros-jazzy-desktop
133+ # Activate the environment
134+ conda activate ros_env
135+ # Add the robostack channel to the environemnt
136+ conda config --env --add channels robostack-jazzy
114137 ```
115138
116139 === "ROS 2 Kilted"
117140 ```bash
118141 # Create a ros-kilted desktop environment
119142 conda create -n ros_env -c conda-forge -c robostack-kilted ros-kilted-desktop
143+ # Activate the environment
144+ conda activate ros_env
145+ # Add the robostack channel to the environemnt
146+ conda config --env --add channels robostack-kilted
120147 ```
121148
122- ```bash
123- # Activate the environment
124- conda activate ros_env
125- ```
126-
127149 ## Installing tools for local development
128150 ```bash title="Default tools to help with local development of ROS packages"
129151 conda activate ros_env
0 commit comments