Skip to content

Commit 28ed0bb

Browse files
authored
Changes quickstart installation to use conda (#2686)
To be consistent with the recommendation of conda installation, we are updating the quickstart guide to also use conda ## Checklist - [X] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [X] I have made corresponding changes to the documentation - [X] My changes generate no new warnings - [X] I have added tests that prove my fix is effective or that my feature works - [X] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [X] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
1 parent 317be41 commit 28ed0bb

File tree

1 file changed

+6
-21
lines changed

1 file changed

+6
-21
lines changed

docs/source/setup/quickstart.rst

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,30 +33,15 @@ pip install route using virtual environments.
3333
If you are using Ubuntu 20.04, you will need to follow the :ref:`Binary Installation Guide <isaaclab-binaries-installation>` instead of the pip install route described below.
3434

3535

36-
To begin, we first define our virtual environment.
36+
To begin, we first define our virtual environment. We recommend using `miniconda <https://docs.conda.io/en/latest/miniconda.html>`_ to create a virtual environment.
3737

38-
.. tab-set::
39-
:sync-group: os
40-
41-
.. tab-item:: :icon:`fa-brands fa-linux` Linux
42-
:sync: linux
43-
44-
.. code-block:: bash
4538

46-
# create a virtual environment named env_isaaclab with python3.10
47-
python3.10 -m venv env_isaaclab
48-
# activate the virtual environment
49-
source env_isaaclab/bin/activate
50-
51-
.. tab-item:: :icon:`fa-brands fa-windows` Windows
52-
:sync: windows
53-
54-
.. code-block:: batch
39+
.. code-block:: bash
5540
56-
# create a virtual environment named env_isaaclab with python3.10
57-
python3.10 -m venv env_isaaclab
58-
# activate the virtual environment
59-
env_isaaclab\Scripts\activate
41+
# create a virtual environment named env_isaaclab with python3.10
42+
conda create -n env_isaaclab python=3.10
43+
# activate the virtual environment
44+
conda activate env_isaaclab
6045
6146
Next, we need to install the CUDA-enabled version of PyTorch 2.5.1. This step is optional for Linux, but required for Windows to ensure a CUDA-compatible version of PyTorch is installed. If in doubt on which
6247
version to use, use 11.8.

0 commit comments

Comments
 (0)