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
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ If you wish to install Isaac Sim 4.5, please use modify the instructions accordi
.. tab-item:: UV Environment

To install ``uv``, please follow the instructions `here <https://docs.astral.sh/uv/getting-started/installation/>`__.

.. note::

A virtual environment created by ``uv venv`` does **not** include ``pip``.
Since Isaac Lab installation requires ``pip``, please install it manually
after activating the environment.

You can create the Isaac Lab environment using the following commands:

.. tab-set::
Expand All @@ -49,6 +56,8 @@ If you wish to install Isaac Sim 4.5, please use modify the instructions accordi
uv venv --python 3.11 env_isaaclab
# activate the virtual environment
source env_isaaclab/bin/activate
# manually install pip via uv
uv pip install pip
.. tab-item:: :icon:`fa-brands fa-windows` Windows
:sync: windows
Expand All @@ -59,6 +68,8 @@ If you wish to install Isaac Sim 4.5, please use modify the instructions accordi
uv venv --python 3.11 env_isaaclab
:: activate the virtual environment
env_isaaclab\Scripts\activate
:: manually install pip via uv
uv pip install pip
.. tab-item:: Conda Environment

Expand Down