@@ -30,8 +30,10 @@ conda install mamba -c conda-forge
3030
3131 # this adds the conda-forge channel to the new created environment configuration
3232 conda config --env --add channels conda-forge
33- # and the robostack channel
33+ # and the robostack-staging channel
3434 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
3537 # remove the defaults channel just in case, this might return an error if it is not in the list which is ok
3638 conda config --env --remove channels defaults
3739 ```
@@ -41,8 +43,11 @@ conda install mamba -c conda-forge
4143 # Install ros-noetic into the environment (ROS1)
4244 mamba install ros-noetic-desktop
4345
44- # Install ros-humble into the environment (ROS2)
46+ # Install ros-humble into the environment (ROS2 Humble )
4547 mamba install ros-humble-desktop
48+
49+ # Install ros-jazzy into the environment (ROS2 Jazzy)
50+ mamba install ros-jazzy-desktop
4651 ```
4752
4853 ```bash title="Reactivate the environment to initialize the ros env"
@@ -66,6 +71,10 @@ conda install mamba -c conda-forge
6671 # Create a ros-humble desktop environment
6772 micromamba create -n ros_env -c conda-forge -c robostack-staging ros-humble-desktop
6873
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+
6978 # Activate the environment
7079 micromamba activate ros_env
7180 ```
0 commit comments