@@ -30,8 +30,10 @@ conda install mamba -c conda-forge
30
30
31
31
# this adds the conda-forge channel to the new created environment configuration
32
32
conda config --env --add channels conda-forge
33
- # and the robostack channel
33
+ # and the robostack-staging channel
34
34
conda config --env --add channels robostack-staging
35
+ # if you want to use Jazzy, also add its own channel:
36
+ conda config --env --add channels robostack-jazzy
35
37
# remove the defaults channel just in case, this might return an error if it is not in the list which is ok
36
38
conda config --env --remove channels defaults
37
39
```
@@ -41,8 +43,11 @@ conda install mamba -c conda-forge
41
43
# Install ros-noetic into the environment (ROS1)
42
44
mamba install ros-noetic-desktop
43
45
44
- # Install ros-humble into the environment (ROS2)
46
+ # Install ros-humble into the environment (ROS2 Humble )
45
47
mamba install ros-humble-desktop
48
+
49
+ # Install ros-jazzy into the environment (ROS2 Jazzy)
50
+ mamba install ros-jazzy-desktop
46
51
```
47
52
48
53
```bash title="Reactivate the environment to initialize the ros env"
@@ -66,6 +71,10 @@ conda install mamba -c conda-forge
66
71
# Create a ros-humble desktop environment
67
72
micromamba create -n ros_env -c conda-forge -c robostack-staging ros-humble-desktop
68
73
74
+ ```bash title="ROS2 Jazzy"
75
+ # Create a ros-jazzy desktop environment
76
+ micromamba create -n ros_env -c conda-forge -c robostack-staging ros-jazzy-desktop
77
+
69
78
# Activate the environment
70
79
micromamba activate ros_env
71
80
```
0 commit comments