@@ -56,6 +56,11 @@ You can install Robostack using either Mamba or Pixi. We recommend using Pixi fo
56
56
mamba install ros-jazzy-desktop
57
57
```
58
58
59
+ === "ROS2 Kilted"
60
+ ```
61
+ conda config --env --add channels robostack-kilted
62
+ mamba install ros-kilted-desktop
63
+ ```
59
64
60
65
```bash title="Deactivate and reactivate the environment to initialize the configured ROS environment"
61
66
mamba deactivate
@@ -91,6 +96,14 @@ You can install Robostack using either Mamba or Pixi. We recommend using Pixi fo
91
96
micromamba activate ros_env
92
97
```
93
98
99
+ === "ROS2 Kilted"
100
+ ```
101
+ # Create a ros-kilted desktop environment
102
+ micromamba create -n ros_env -c conda-forge -c robostack-kilted ros-kilted-desktop
103
+
104
+ # Activate the environment
105
+ micromamba activate ros_env
106
+ ```
94
107
95
108
## Installing tools for local development
96
109
=== "Mamba"
@@ -190,6 +203,7 @@ You can install Robostack using either Mamba or Pixi. We recommend using Pixi fo
190
203
noetic = { features = ["noetic"] }
191
204
humble = { features = ["humble"] }
192
205
jazzy = { features = ["jazzy"] }
206
+ kilted = { features = ["kilted"] }
193
207
194
208
# noetic
195
209
[feature.noetic]
@@ -217,6 +231,16 @@ You can install Robostack using either Mamba or Pixi. We recommend using Pixi fo
217
231
ros-jazzy-desktop = "*"
218
232
colcon-common-extensions = "*"
219
233
rosdep = "*"
234
+
235
+ # kilted
236
+ [feature.kilted]
237
+ channels = ["https://prefix.dev/robostack-kilted"]
238
+
239
+ [feature.kilted.dependencies]
240
+ ros-kilted-desktop = "*"
241
+ colcon-common-extensions = "*"
242
+ rosdep = "*"
243
+ ```
220
244
```
221
245
```bash
222
246
# Save and exit pixi.toml
@@ -231,6 +255,9 @@ You can install Robostack using either Mamba or Pixi. We recommend using Pixi fo
231
255
232
256
# ROS jazzy
233
257
pixi shell -e jazzy
258
+
259
+ # ROS kilted
260
+ pixi shell -e kilted
234
261
```
235
262
236
263
## Testing installation
@@ -338,7 +365,7 @@ After installation, you should test if you are able to run `rviz`/`rviz2` and ot
338
365
**ROS2**
339
366
```bash title="Terminal"
340
367
cd robostack
341
- pixi shell -e humble # OR jazzy
368
+ pixi shell -e humble # OR jazzy, kilted
342
369
rviz2
343
370
```
344
371
0 commit comments