Launching isaaclab with incorrect isaacsim version

I have installed different Isaac Sim Version with
4.0.0,4.1.0,4.2.0.
And i want to launch the isaaclab with isaacsim-4.2.0 by reconnecting the _isaac_sim with 4.2.0version of isaacsim.

-rw-rw-r-- 1 kan kan   393 Jul 13 16:46 CONTRIBUTING.md
-rw-rw-r-- 1 kan kan  1218 Jul 13 16:46 CONTRIBUTORS.md
drwxrwxr-x 4 kan kan  4096 Jul 13 16:46 docker
drwxrwxr-x 4 kan kan  4096 Jul 13 16:46 docs
-rw-rw-r-- 1 kan kan 17293 Jul 13 16:46 isaaclab.bat
drwxrwxr-x 9 kan kan  4096 Jul 29 09:36 isaacLab.manipulation
-rwxrwxr-x 1 kan kan 16249 Jul 13 16:46 isaaclab.sh
lrwxrwxrwx 1 kan kan    45 Nov 20 16:05 _isaac_sim -> /home/kan/.local/share/ov/pkg/isaac-sim-4.2.0
-rw-rw-r-- 1 kan kan  1564 Jul 13 16:46 LICENSE
drwxrwxr-x 3 kan kan  4096 Jul 18 20:28 logs
-rw-rw-r-- 1 kan kan  2304 Jul 13 16:46 pyproject.toml
-rw-rw-r-- 1 kan kan  3684 Jul 13 16:46 README.md
drwxrwxr-x 5 kan kan  4096 Jul 13 16:46 source
drwxrwxr-x 2 kan kan  4096 Jul 13 16:46 tools
-rw-rw-r-- 1 kan kan     6 Jul 13 16:46 VERSION

For example: running the arm_demo from Isaaclab_Doc

python source/standalone/demos/arms.py

But it still launch with the 4.0.0 version of isaacsim:

2024-11-20 08:37:42 [0ms] [Info] [omni.kit.app.plugin] App Name: 'Isaac-Sim', App Version: '4.0.0', Kit Version: '106.1.0+release.140981.10a4b5c0.gl', Kernel Version: '173.5+release.6562.3a7379eb.gl'

Here is the log file:
kit_20241120_163742.log (1.3 MB)
How can launch the isaaclab with the 4.2.0version of isaacsim?
And Can i check my current using version of isaacsim and isaaclab in another way?(like by typing something in the Terminal and it outputs with the version of isaacsim and isaaclab).
Thanks!

Please review Verifying the Isaac Sim installation in the Isaac Lab documentation, particularly the value set for the ISAACSIM_PATH variable

Hi VickNV,
I have check what you mentioned and write it on my bash:


And the isaacsim runs as expected:

${ISAACSIM_PATH}/isaac-sim.sh
20024-11-21 05:49:00 [0ms] [Info] [omni.kit.app.plugin] App Name: 'Isaac-Sim', App Version: '4.2.0', Kit Version: '106.1.0+release.140981.10a4b5c0.gl', Kernel Version: '173.5+release.6562.3a7379eb.gl'

kit_20241121_134859.log (1.1 MB)

${ISAACSIM_PYTHON_EXE} -c "print('Isaac Sim configuration is now complete.')"

output:

Warning: running in conda env, please deactivate before executing this script
If conda is desired please source setup_conda_env.sh in your python 3.10 conda env and run python normally
Isaac Sim configuration is now complete.

But this doesn’t went well:

# checks that Isaac Sim can be launched from python
${ISAACSIM_PYTHON_EXE} ${ISAACSIM_PATH}/standalone_examples/api/omni.isaac.core/add_cubes.py

Isaacsim was launched but crashed after hanging for a while.
kit_20241121_134859.log (1.1 MB)
According to the log,It launched with the correct 4.2.0version.
But then i try with :

python source/standalone/demos/arms.py

it still says i was running with 4.0.0 version of issacsim from the log:

2024-11-21 06:13:09 [0ms] [Info] [omni.kit.app.plugin] App Name: 'Isaac-Sim', App Version: '4.0.0', Kit Version: '106.1.0+release.140981.10a4b5c0.gl', Kernel Version: '173.5+release.6562.3a7379eb.gl'

kit_20241121_141309.log (1.3 MB)
Maybe it was because my conda env.Please do let me know if you find something wrong,Thanks!

Please try running with isaaclab.sh.

Sorry for the late reply,
Re-install the isaacsim and isaaclab solve it.
Thanks!