forked from isaac-sim/IsaacLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathisaaclab.sh
More file actions
executable file
·774 lines (700 loc) · 29.4 KB
/
isaaclab.sh
File metadata and controls
executable file
·774 lines (700 loc) · 29.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
#!/usr/bin/env bash
# Copyright (c) 2022-2025, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#==
# Configurations
#==
# Exits if error occurs
set -e
# Set tab-spaces
tabs 4
# get source directory
export ISAACLAB_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
#==
# Helper functions
#==
# install system dependencies
install_system_deps() {
# check if cmake is already installed
if command -v cmake &> /dev/null; then
echo "[INFO] cmake is already installed."
else
# check if running as root
if [ "$EUID" -ne 0 ]; then
echo "[INFO] Installing system dependencies..."
sudo apt-get update && sudo apt-get install -y --no-install-recommends \
cmake \
build-essential
else
echo "[INFO] Installing system dependencies..."
apt-get update && apt-get install -y --no-install-recommends \
cmake \
build-essential
fi
fi
}
# Returns success (exit code 0 / "true") if the detected Isaac Sim version starts with 4.5,
# otherwise returns non-zero ("false"). Works with both symlinked binary installs and pip installs.
is_isaacsim_version_4_5() {
local version=""
local python_exe
python_exe=$(extract_python_exe)
# 0) Fast path: read VERSION file from the symlinked _isaac_sim directory (binary install)
# If the repository has _isaac_sim → <IsaacSimRoot> symlink, the VERSION file is the simplest source of truth.
if [[ -f "${ISAACLAB_PATH}/_isaac_sim/VERSION" ]]; then
# Read first line of the VERSION file; don't fail the whole script on errors.
version=$(head -n1 "${ISAACLAB_PATH}/_isaac_sim/VERSION" || true)
fi
# 1) Package-path probe: import isaacsim and walk up to ../../VERSION (pip or nonstandard layouts)
# If we still don't know the version, ask Python where the isaacsim package lives
if [[ -z "$version" ]]; then
local sim_file=""
# Print isaacsim.__file__; suppress errors so set -e won't abort.
sim_file=$("${python_exe}" -c 'import isaacsim, os; print(isaacsim.__file__)' 2>/dev/null || true)
if [[ -n "$sim_file" ]]; then
local version_path
version_path="$(dirname "$sim_file")/../../VERSION"
# If that VERSION file exists, read it.
[[ -f "$version_path" ]] && version=$(head -n1 "$version_path" || true)
fi
fi
# 2) Fallback: use package metadata via importlib.metadata.version("isaacsim")
if [[ -z "$version" ]]; then
version=$("${python_exe}" <<'PY' 2>/dev/null || true
from importlib.metadata import version, PackageNotFoundError
try:
print(version("isaacsim"))
except PackageNotFoundError:
pass
PY
)
fi
# Final decision: return success if version begins with "4.5", 0 if match, 1 otherwise.
[[ "$version" == 4.5* ]]
}
# check if running in docker
is_docker() {
[ -f /.dockerenv ] || [ -f /run/.containerenv ] || \
grep -qaE '(docker|containerd|kubepods|podman)' /proc/1/cgroup || \
[[ $(cat /proc/1/comm) == "containerd-shim" ]]
}
# check if running on ARM architecture
is_arm() {
[[ "$(uname -m)" == "aarch64" ]] || [[ "$(uname -m)" == "arm64" ]]
}
ensure_cuda_torch() {
local python_exe=$(extract_python_exe)
local pip_install_command=$(extract_pip_command)
local pip_uninstall_command=$(extract_pip_uninstall_command)
# base index for torch
local base_index="https://download.pytorch.org/whl"
# choose pins per arch
local torch_ver tv_ver cuda_ver
if is_arm; then
torch_ver="2.9.0"
tv_ver="0.24.0"
cuda_ver="130"
else
torch_ver="2.7.0"
tv_ver="0.22.0"
cuda_ver="128"
fi
local index="${base_index}/cu${cuda_ver}"
local want_torch="${torch_ver}+cu${cuda_ver}"
# check current torch version (may be empty)
local cur=""
cur="$(${python_exe} - <<'PY' 2>/dev/null || true
try:
import torch
except Exception:
pass
else:
print(torch.__version__, end="")
PY
)"
# skip install if version is already satisfied
if [[ "$cur" == "$want_torch" ]]; then
return 0
fi
# clean install torch
echo "[INFO] Installing torch==${torch_ver} and torchvision==${tv_ver} (cu${cuda_ver}) from ${index}..."
${pip_uninstall_command} torch torchvision torchaudio >/dev/null 2>&1 || true
${pip_install_command} -U --index-url "${index}" "torch==${torch_ver}" "torchvision==${tv_ver}"
}
# extract isaac sim path
extract_isaacsim_path() {
# Use the sym-link path to Isaac Sim directory
local isaac_path=${ISAACLAB_PATH}/_isaac_sim
# If above path is not available, try to find the path using python
if [ ! -d "${isaac_path}" ]; then
# Use the python executable to get the path
local python_exe=$(extract_python_exe)
# Retrieve the path importing isaac sim and getting the environment path
if [ $(${python_exe} -m pip list | grep -c 'isaacsim-rl') -gt 0 ]; then
local isaac_path=$(${python_exe} -c "import isaacsim; import os; print(os.environ['ISAAC_PATH'])")
fi
fi
# check if there is a path available
if [ ! -d "${isaac_path}" ]; then
# throw an error if no path is found
echo -e "[ERROR] Unable to find the Isaac Sim directory: '${isaac_path}'" >&2
echo -e "\tThis could be due to the following reasons:" >&2
echo -e "\t1. Conda environment is not activated." >&2
echo -e "\t2. Isaac Sim pip package 'isaacsim-rl' is not installed." >&2
echo -e "\t3. Isaac Sim directory is not available at the default path: ${ISAACLAB_PATH}/_isaac_sim" >&2
# exit the script
exit 1
fi
# return the result
echo ${isaac_path}
}
# extract the python from isaacsim
extract_python_exe() {
# check if using conda
if ! [[ -z "${CONDA_PREFIX}" ]]; then
# use conda python
local python_exe=${CONDA_PREFIX}/bin/python
elif ! [[ -z "${VIRTUAL_ENV}" ]]; then
# use uv virtual environment python
local python_exe=${VIRTUAL_ENV}/bin/python
else
# use kit python
local python_exe=${ISAACLAB_PATH}/_isaac_sim/python.sh
if [ ! -f "${python_exe}" ]; then
# note: we need to check system python for cases such as docker
# inside docker, if user installed into system python, we need to use that
# otherwise, use the python from the kit
if [ $(python -m pip list | grep -c 'isaacsim-rl') -gt 0 ]; then
local python_exe=$(which python)
fi
fi
fi
# check if there is a python path available
if [ ! -f "${python_exe}" ]; then
echo -e "[ERROR] Unable to find any Python executable at path: '${python_exe}'" >&2
echo -e "\tThis could be due to the following reasons:" >&2
echo -e "\t1. Conda or uv environment is not activated." >&2
echo -e "\t2. Isaac Sim pip package 'isaacsim-rl' is not installed." >&2
echo -e "\t3. Python executable is not available at the default path: ${ISAACLAB_PATH}/_isaac_sim/python.sh" >&2
exit 1
fi
# return the result
echo ${python_exe}
}
# extract the simulator exe from isaacsim
extract_isaacsim_exe() {
# obtain the isaac sim path
local isaac_path=$(extract_isaacsim_path)
# isaac sim executable to use
local isaacsim_exe=${isaac_path}/isaac-sim.sh
# check if there is a python path available
if [ ! -f "${isaacsim_exe}" ]; then
# check for installation using Isaac Sim pip
# note: pip installed Isaac Sim can only come from a direct
# python environment, so we can directly use 'python' here
if [ $(python -m pip list | grep -c 'isaacsim-rl') -gt 0 ]; then
# Isaac Sim - Python packages entry point
local isaacsim_exe="isaacsim isaacsim.exp.full"
else
echo "[ERROR] No Isaac Sim executable found at path: ${isaac_path}" >&2
exit 1
fi
fi
# return the result
echo ${isaacsim_exe}
}
# find pip command based on virtualization
extract_pip_command() {
# detect if we're in a uv environment
if [ -n "${VIRTUAL_ENV}" ] && [ -f "${VIRTUAL_ENV}/pyvenv.cfg" ] && grep -q "uv" "${VIRTUAL_ENV}/pyvenv.cfg"; then
pip_command="uv pip install"
else
# retrieve the python executable
python_exe=$(extract_python_exe)
pip_command="${python_exe} -m pip install"
fi
echo ${pip_command}
}
extract_pip_uninstall_command() {
# detect if we're in a uv environment
if [ -n "${VIRTUAL_ENV}" ] && [ -f "${VIRTUAL_ENV}/pyvenv.cfg" ] && grep -q "uv" "${VIRTUAL_ENV}/pyvenv.cfg"; then
pip_uninstall_command="uv pip uninstall"
else
# retrieve the python executable
python_exe=$(extract_python_exe)
pip_uninstall_command="${python_exe} -m pip uninstall -y"
fi
echo ${pip_uninstall_command}
}
# check if input directory is a python extension and install the module
install_isaaclab_extension() {
# retrieve the python executable
python_exe=$(extract_python_exe)
pip_command=$(extract_pip_command)
# if the directory contains setup.py then install the python module
if [ -f "$1/setup.py" ]; then
echo -e "\t module: $1"
$pip_command --editable "$1"
fi
}
# Resolve Torch-bundled libgomp and prepend to LD_PRELOAD, once per shell session
write_torch_gomp_hooks() {
mkdir -p "${CONDA_PREFIX}/etc/conda/activate.d" "${CONDA_PREFIX}/etc/conda/deactivate.d"
# activation: resolve Torch's libgomp via this env's Python and prepend to LD_PRELOAD
cat > "${CONDA_PREFIX}/etc/conda/activate.d/torch_gomp.sh" <<'EOS'
# Resolve Torch-bundled libgomp and prepend to LD_PRELOAD (quiet + idempotent)
: "${_IL_PREV_LD_PRELOAD:=${LD_PRELOAD-}}"
__gomp="$("$CONDA_PREFIX/bin/python" - <<'PY' 2>/dev/null || true
import pathlib
try:
import torch
p = pathlib.Path(torch.__file__).parent / 'lib' / 'libgomp.so.1'
print(p if p.exists() else "", end="")
except Exception:
pass
PY
)"
if [ -n "$__gomp" ] && [ -r "$__gomp" ]; then
case ":${LD_PRELOAD:-}:" in
*":$__gomp:"*) : ;; # already present
*) export LD_PRELOAD="$__gomp${LD_PRELOAD:+:$LD_PRELOAD}";;
esac
fi
unset __gomp
EOS
# deactivation: restore original LD_PRELOAD
cat > "${CONDA_PREFIX}/etc/conda/deactivate.d/torch_gomp_unset.sh" <<'EOS'
# restore LD_PRELOAD to pre-activation value
if [ -v _IL_PREV_LD_PRELOAD ]; then
export LD_PRELOAD="$_IL_PREV_LD_PRELOAD"
unset _IL_PREV_LD_PRELOAD
fi
EOS
}
# Temporarily unset LD_PRELOAD (ARM only) for a block of commands
begin_arm_install_sandbox() {
if is_arm && [[ -n "${LD_PRELOAD:-}" ]]; then
export _IL_SAVED_LD_PRELOAD="$LD_PRELOAD"
unset LD_PRELOAD
echo "[INFO] ARM install sandbox: temporarily unsetting LD_PRELOAD for installation."
fi
# ensure we restore even if a command fails (set -e)
trap 'end_arm_install_sandbox' EXIT
}
end_arm_install_sandbox() {
if [[ -n "${_IL_SAVED_LD_PRELOAD:-}" ]]; then
export LD_PRELOAD="$_IL_SAVED_LD_PRELOAD"
unset _IL_SAVED_LD_PRELOAD
fi
# remove trap so later exits don’t re-run restore
trap - EXIT
}
# setup anaconda environment for Isaac Lab
setup_conda_env() {
# get environment name from input
local env_name=$1
# check conda is installed
if ! command -v conda &> /dev/null
then
echo "[ERROR] Conda could not be found. Please install conda and try again."
exit 1
fi
# check if _isaac_sim symlink exists and isaacsim-rl is not installed via pip
if [ ! -L "${ISAACLAB_PATH}/_isaac_sim" ] && ! python -m pip list | grep -q 'isaacsim-rl'; then
echo -e "[WARNING] _isaac_sim symlink not found at ${ISAACLAB_PATH}/_isaac_sim"
echo -e "\tThis warning can be ignored if you plan to install Isaac Sim via pip."
echo -e "\tIf you are using a binary installation of Isaac Sim, please ensure the symlink is created before setting up the conda environment."
fi
# check if the environment exists
if { conda env list | grep -w ${env_name}; } >/dev/null 2>&1; then
echo -e "[INFO] Conda environment named '${env_name}' already exists."
else
echo -e "[INFO] Creating conda environment named '${env_name}'..."
echo -e "[INFO] Installing dependencies from ${ISAACLAB_PATH}/environment.yml"
# patch Python version if needed, but back up first
cp "${ISAACLAB_PATH}/environment.yml"{,.bak}
if is_isaacsim_version_4_5; then
echo "[INFO] Detected Isaac Sim 4.5 → forcing python=3.10"
sed -i 's/^ - python=3\.11/ - python=3.10/' "${ISAACLAB_PATH}/environment.yml"
else
echo "[INFO] Isaac Sim >= 5.0 detected, installing python=3.11"
fi
conda env create -y --file ${ISAACLAB_PATH}/environment.yml -n ${env_name}
# (optional) restore original environment.yml:
if [[ -f "${ISAACLAB_PATH}/environment.yml.bak" ]]; then
mv "${ISAACLAB_PATH}/environment.yml.bak" "${ISAACLAB_PATH}/environment.yml"
fi
fi
# cache current paths for later
cache_pythonpath=$PYTHONPATH
cache_ld_library_path=$LD_LIBRARY_PATH
# clear any existing files
rm -f ${CONDA_PREFIX}/etc/conda/activate.d/setenv.sh
rm -f ${CONDA_PREFIX}/etc/conda/deactivate.d/unsetenv.sh
# activate the environment
source $(conda info --base)/etc/profile.d/conda.sh
conda activate ${env_name}
# setup directories to load Isaac Sim variables
mkdir -p ${CONDA_PREFIX}/etc/conda/activate.d
mkdir -p ${CONDA_PREFIX}/etc/conda/deactivate.d
# add variables to environment during activation
printf '%s\n' '#!/usr/bin/env bash' '' \
'# for Isaac Lab' \
'export ISAACLAB_PATH='${ISAACLAB_PATH}'' \
'alias isaaclab='${ISAACLAB_PATH}'/isaaclab.sh' \
'' \
'# show icon if not running headless' \
'export RESOURCE_NAME="IsaacSim"' \
'' > ${CONDA_PREFIX}/etc/conda/activate.d/setenv.sh
write_torch_gomp_hooks
# check if we have _isaac_sim directory -> if so that means binaries were installed.
# we need to setup conda variables to load the binaries
local isaacsim_setup_conda_env_script=${ISAACLAB_PATH}/_isaac_sim/setup_conda_env.sh
if [ -f "${isaacsim_setup_conda_env_script}" ]; then
# add variables to environment during activation
printf '%s\n' \
'# for Isaac Sim' \
'source '${isaacsim_setup_conda_env_script}'' \
'' >> ${CONDA_PREFIX}/etc/conda/activate.d/setenv.sh
fi
# reactivate the environment to load the variables
# needed because deactivate complains about Isaac Lab alias since it otherwise doesn't exist
conda activate ${env_name}
# remove variables from environment during deactivation
printf '%s\n' '#!/usr/bin/env bash' '' \
'# for Isaac Lab' \
'unalias isaaclab &>/dev/null' \
'unset ISAACLAB_PATH' \
'' \
'# restore paths' \
'export PYTHONPATH='${cache_pythonpath}'' \
'export LD_LIBRARY_PATH='${cache_ld_library_path}'' \
'' \
'# for Isaac Sim' \
'unset RESOURCE_NAME' \
'' > ${CONDA_PREFIX}/etc/conda/deactivate.d/unsetenv.sh
# check if we have _isaac_sim directory -> if so that means binaries were installed.
if [ -f "${isaacsim_setup_conda_env_script}" ]; then
# add variables to environment during activation
printf '%s\n' \
'# for Isaac Sim' \
'unset CARB_APP_PATH' \
'unset EXP_PATH' \
'unset ISAAC_PATH' \
'' >> ${CONDA_PREFIX}/etc/conda/deactivate.d/unsetenv.sh
fi
# deactivate the environment
conda deactivate
# add information to the user about alias
echo -e "[INFO] Added 'isaaclab' alias to conda environment for 'isaaclab.sh' script."
echo -e "[INFO] Created conda environment named '${env_name}'.\n"
echo -e "\t\t1. To activate the environment, run: conda activate ${env_name}"
echo -e "\t\t2. To install Isaac Lab extensions, run: isaaclab -i"
echo -e "\t\t3. To perform formatting, run: isaaclab -f"
echo -e "\t\t4. To deactivate the environment, run: conda deactivate"
echo -e "\n"
}
# setup uv environment for Isaac Lab
setup_uv_env() {
# get environment name from input
local env_name="$1"
local python_path="$2"
# check uv is installed
if ! command -v uv &>/dev/null; then
echo "[ERROR] uv could not be found. Please install uv and try again."
echo "[ERROR] uv can be installed here:"
echo "[ERROR] https://docs.astral.sh/uv/getting-started/installation/"
exit 1
fi
# check if _isaac_sim symlink exists and isaacsim-rl is not installed via pip
if [ ! -L "${ISAACLAB_PATH}/_isaac_sim" ] && ! python -m pip list | grep -q 'isaacsim-rl'; then
echo -e "[WARNING] _isaac_sim symlink not found at ${ISAACLAB_PATH}/_isaac_sim"
echo -e "\tThis warning can be ignored if you plan to install Isaac Sim via pip."
echo -e "\tIf you are using a binary installation of Isaac Sim, please ensure the symlink is created before setting up the conda environment."
fi
# check if the environment exists
local env_path="${ISAACLAB_PATH}/${env_name}"
if [ ! -d "${env_path}" ]; then
echo -e "[INFO] Creating uv environment named '${env_name}'..."
uv venv --clear --python "${python_path}" "${env_path}"
else
echo "[INFO] uv environment '${env_name}' already exists."
fi
# define root path for activation hooks
local isaaclab_root="${ISAACLAB_PATH}"
# cache current paths for later
cache_pythonpath=$PYTHONPATH
cache_ld_library_path=$LD_LIBRARY_PATH
# ensure activate file exists
touch "${env_path}/bin/activate"
# add variables to environment during activation
cat >> "${env_path}/bin/activate" <<EOF
export ISAACLAB_PATH="${ISAACLAB_PATH}"
alias isaaclab="${ISAACLAB_PATH}/isaaclab.sh"
export RESOURCE_NAME="IsaacSim"
if [ -f "${ISAACLAB_PATH}/_isaac_sim/setup_conda_env.sh" ]; then
. "${ISAACLAB_PATH}/_isaac_sim/setup_conda_env.sh"
fi
EOF
# add information to the user about alias
echo -e "[INFO] Added 'isaaclab' alias to uv environment for 'isaaclab.sh' script."
echo -e "[INFO] Created uv environment named '${env_name}'.\n"
echo -e "\t\t1. To activate the environment, run: source ${env_name}/bin/activate."
echo -e "\t\t2. To install Isaac Lab extensions, run: isaaclab -i"
echo -e "\t\t3. To perform formatting, run: isaaclab -f"
echo -e "\t\t4. To deactivate the environment, run: deactivate"
echo -e "\n"
}
# update the vscode settings from template and isaac sim settings
update_vscode_settings() {
echo "[INFO] Setting up vscode settings..."
# retrieve the python executable
python_exe=$(extract_python_exe)
# path to setup_vscode.py
setup_vscode_script="${ISAACLAB_PATH}/.vscode/tools/setup_vscode.py"
# check if the file exists before attempting to run it
if [ -f "${setup_vscode_script}" ]; then
${python_exe} "${setup_vscode_script}"
else
echo "[WARNING] Unable to find the script 'setup_vscode.py'. Aborting vscode settings setup."
fi
}
# print the usage description
print_help () {
echo -e "\nusage: $(basename "$0") [-h] [-i] [-f] [-p] [-s] [-t] [-o] [-v] [-d] [-n] [-c] [-u] -- Utility to manage Isaac Lab."
echo -e "\noptional arguments:"
echo -e "\t-h, --help Display the help content."
echo -e "\t-i, --install [LIB] Install the extensions inside Isaac Lab and learning frameworks as extra dependencies. Default is 'all'."
echo -e "\t-f, --format Run pre-commit to format the code and check lints."
echo -e "\t-p, --python Run the python executable provided by Isaac Sim or virtual environment (if active)."
echo -e "\t-s, --sim Run the simulator executable (isaac-sim.sh) provided by Isaac Sim."
echo -e "\t-t, --test Run all python pytest tests."
echo -e "\t-o, --docker Run the docker container helper script (docker/container.sh)."
echo -e "\t-v, --vscode Generate the VSCode settings file from template."
echo -e "\t-d, --docs Build the documentation from source using sphinx."
echo -e "\t-n, --new Create a new external project or internal task from template."
echo -e "\t-c, --conda [NAME] Create the conda environment for Isaac Lab. Default name is 'env_isaaclab'."
echo -e "\t-u, --uv [NAME] Create the uv environment for Isaac Lab. Default name is 'env_isaaclab'."
echo -e "\n" >&2
}
#==
# Main
#==
# check argument provided
if [ -z "$*" ]; then
echo "[Error] No arguments provided." >&2;
print_help
exit 0
fi
# pass the arguments
while [[ $# -gt 0 ]]; do
# read the key
case "$1" in
-i|--install)
# install system dependencies first
install_system_deps
# install the python packages in IsaacLab/source directory
echo "[INFO] Installing extensions inside the Isaac Lab repository..."
python_exe=$(extract_python_exe)
pip_command=$(extract_pip_command)
pip_uninstall_command=$(extract_pip_uninstall_command)
# if on ARM arch, temporarily clear LD_PRELOAD
# LD_PRELOAD is restored below, after installation
begin_arm_install_sandbox
# install pytorch (version based on arch)
ensure_cuda_torch
# recursively look into directories and install them
# this does not check dependencies between extensions
export -f extract_python_exe
export -f extract_pip_command
export -f extract_pip_uninstall_command
export -f install_isaaclab_extension
# source directory
find -L "${ISAACLAB_PATH}/source" -mindepth 1 -maxdepth 1 -type d -exec bash -c 'install_isaaclab_extension "{}"' \;
# install the python packages for supported reinforcement learning frameworks
echo "[INFO] Installing extra requirements such as learning frameworks..."
# check if specified which rl-framework to install
if [ -z "$2" ]; then
echo "[INFO] Installing all rl-frameworks..."
framework_name="all"
elif [ "$2" = "none" ]; then
echo "[INFO] No rl-framework will be installed."
framework_name="none"
shift # past argument
else
echo "[INFO] Installing rl-framework: $2"
framework_name=$2
shift # past argument
fi
# install the learning frameworks specified
${pip_command} -e "${ISAACLAB_PATH}/source/isaaclab_rl[${framework_name}]"
${pip_command} -e "${ISAACLAB_PATH}/source/isaaclab_mimic[${framework_name}]"
# in some rare cases, torch might not be installed properly by setup.py, add one more check here
# can prevent that from happening
ensure_cuda_torch
# restore LD_PRELOAD if we cleared it
end_arm_install_sandbox
# check if we are inside a docker container or are building a docker image
# in that case don't setup VSCode since it asks for EULA agreement which triggers user interaction
if is_docker; then
echo "[INFO] Running inside a docker container. Skipping VSCode settings setup."
echo "[INFO] To setup VSCode settings, run 'isaaclab -v'."
else
# update the vscode settings
update_vscode_settings
fi
# unset local variables
unset extract_python_exe
unset extract_pip_command
unset extract_pip_uninstall_command
unset install_isaaclab_extension
shift # past argument
;;
-c|--conda)
# use default name if not provided
if [ -z "$2" ]; then
echo "[INFO] Using default conda environment name: env_isaaclab"
conda_env_name="env_isaaclab"
else
echo "[INFO] Using conda environment name: $2"
conda_env_name=$2
shift # past argument
fi
# setup the conda environment for Isaac Lab
setup_conda_env ${conda_env_name}
shift # past argument
;;
-u|--uv)
# use default name if not provided
if [ -z "$2" ]; then
echo "[INFO] Using default uv environment name: env_isaaclab"
uv_env_name="env_isaaclab"
else
echo "[INFO] Using uv environment name: $2"
uv_env_name=$2
shift # past argument
fi
# setup the uv environment for Isaac Lab
setup_uv_env ${uv_env_name}
shift # past argument
;;
-f|--format)
# reset the python path to avoid conflicts with pre-commit
# this is needed because the pre-commit hooks are installed in a separate virtual environment
# and it uses the system python to run the hooks
if [ -n "${CONDA_DEFAULT_ENV}" ] || [ -n "${VIRTUAL_ENV}" ]; then
cache_pythonpath=${PYTHONPATH}
export PYTHONPATH=""
fi
# run the formatter over the repository
# check if pre-commit is installed
if ! command -v pre-commit &>/dev/null; then
echo "[INFO] Installing pre-commit..."
pip_command=$(extract_pip_command)
${pip_command} pre-commit
sudo apt-get install -y pre-commit
fi
# always execute inside the Isaac Lab directory
echo "[INFO] Formatting the repository..."
cd ${ISAACLAB_PATH}
pre-commit run --all-files
cd - > /dev/null
# set the python path back to the original value
if [ -n "${CONDA_DEFAULT_ENV}" ] || [ -n "${VIRTUAL_ENV}" ]; then
export PYTHONPATH=${cache_pythonpath}
fi
shift # past argument
# exit neatly
break
;;
-p|--python)
# ensures Kit loads Isaac Sim’s icon instead of a generic icon on aarch64
if is_arm; then
export RESOURCE_NAME="${RESOURCE_NAME:-IsaacSim}"
fi
# run the python provided by isaacsim
python_exe=$(extract_python_exe)
echo "[INFO] Using python from: ${python_exe}"
shift # past argument
${python_exe} "$@"
# exit neatly
break
;;
-s|--sim)
# run the simulator exe provided by isaacsim
isaacsim_exe=$(extract_isaacsim_exe)
echo "[INFO] Running isaac-sim from: ${isaacsim_exe}"
shift # past argument
${isaacsim_exe} --ext-folder ${ISAACLAB_PATH}/source $@
# exit neatly
break
;;
-n|--new)
# run the template generator script
python_exe=$(extract_python_exe)
pip_command=$(extract_pip_command)
shift # past argument
echo "[INFO] Installing template dependencies..."
${pip_command} -q -r ${ISAACLAB_PATH}/tools/template/requirements.txt
echo -e "\n[INFO] Running template generator...\n"
${python_exe} ${ISAACLAB_PATH}/tools/template/cli.py $@
# exit neatly
break
;;
-t|--test)
# run the python provided by isaacsim
python_exe=$(extract_python_exe)
shift # past argument
${python_exe} -m pytest ${ISAACLAB_PATH}/tools $@
# exit neatly
break
;;
-o|--docker)
# run the docker container helper script
docker_script=${ISAACLAB_PATH}/docker/container.sh
echo "[INFO] Running docker utility script from: ${docker_script}"
shift # past argument
bash ${docker_script} $@
# exit neatly
break
;;
-v|--vscode)
# update the vscode settings
update_vscode_settings
shift # past argument
# exit neatly
break
;;
-d|--docs)
# build the documentation
echo "[INFO] Building documentation..."
# retrieve the python executable
python_exe=$(extract_python_exe)
pip_command=$(extract_pip_command)
# install pip packages
cd ${ISAACLAB_PATH}/docs
${pip_command} -r requirements.txt > /dev/null
# build the documentation
${python_exe} -m sphinx -b html -d _build/doctrees . _build/current
# open the documentation
echo -e "[INFO] To open documentation on default browser, run:"
echo -e "\n\t\txdg-open $(pwd)/_build/current/index.html\n"
# exit neatly
cd - > /dev/null
shift # past argument
# exit neatly
break
;;
-h|--help)
print_help
exit 0
;;
*) # unknown option
echo "[Error] Invalid argument provided: $1"
print_help
exit 1
;;
esac
done