Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 32 additions & 10 deletions docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,29 +37,40 @@ Note that the instructions for Conda and Micromamba are virtually identical apar
```bash
# Create a ros-noetic desktop environment
micromamba create -n ros_env -c conda-forge -c robostack-noetic ros-noetic-desktop
# Activate the environment
micromamba activate ros_env
# Add the robostack channel to the environemnt
micromamba config append channels robostack-noetic --env
```
=== "ROS 2 Humble"
```bash
# Create a ros-humble desktop environment
micromamba create -n ros_env -c conda-forge -c robostack-humble ros-humble-desktop
# Activate the environment
micromamba activate ros_env
# Add the robostack channel to the environemnt
micromamba config append channels robostack-humble --env
```
=== "ROS 2 Jazzy"
```bash
# Create a ros-jazzy desktop environment
micromamba create -n ros_env -c conda-forge -c robostack-jazzy ros-jazzy-desktop
# Activate the environment
micromamba activate ros_env
# Add the robostack channel to the environemnt
micromamba config append channels robostack-jazzy --env
```

=== "ROS 2 Kilted"
```bash
# Create a ros-kilted desktop environment
micromamba create -n ros_env -c conda-forge -c robostack-kilted ros-kilted-desktop
# Activate the environment
micromamba activate ros_env
# Add the robostack channel to the environemnt
micromamba config append channels robostack-kilted --env
```

```bash
# Activate the environment
micromamba activate ros_env
```

## Installing tools for local development
```bash title="Default tools to help with local development of ROS packages"
micromamba activate ros_env
Expand Down Expand Up @@ -101,29 +112,40 @@ Note that the instructions for Conda and Micromamba are virtually identical apar
```bash
# Create a ros-noetic desktop environment
conda create -n ros_env -c conda-forge -c robostack-noetic ros-noetic-desktop
# Activate the environment
conda activate ros_env
# Add the robostack channel to the environemnt
conda config --env --add channels robostack-noetic
```
=== "ROS 2 Humble"
```bash
# Create a ros-humble desktop environment
conda create -n ros_env -c conda-forge -c robostack-humble ros-humble-desktop
# Activate the environment
conda activate ros_env
# Add the robostack channel to the environemnt
conda config --env --add channels robostack-humble
```
=== "ROS 2 Jazzy"
```bash
# Create a ros-jazzy desktop environment
conda create -n ros_env -c conda-forge -c robostack-jazzy ros-jazzy-desktop
# Activate the environment
conda activate ros_env
# Add the robostack channel to the environemnt
conda config --env --add channels robostack-jazzy
```

=== "ROS 2 Kilted"
```bash
# Create a ros-kilted desktop environment
conda create -n ros_env -c conda-forge -c robostack-kilted ros-kilted-desktop
# Activate the environment
conda activate ros_env
# Add the robostack channel to the environemnt
conda config --env --add channels robostack-kilted
```

```bash
# Activate the environment
conda activate ros_env
```

## Installing tools for local development
```bash title="Default tools to help with local development of ROS packages"
conda activate ros_env
Expand Down