Core API Hello World not working

New findings and my solution:

This seems to also be a problem here 1. Hello World — Omniverse IsaacSim latest documentation in section 1.4 in the video.

Additionally this seems to have been mentioned here: VSCode setup for Isaac Sim although the solution did not fully fix the problem.

So finally here was my two solutions.

Open the folder containing all the omni.XXXX files (for me this was the ext folder)
Then add

“python.analysis.extraPaths”: [
“./omni.isaac.core”
]

To the settings.json in the .vscode folder in there.

This allows the linter to analyze it and fixes the problem.

Alternatively though you can just be in the omni.isaac.examples folder looking at your example exactly as the UI links you to
and then add
“python.analysis.extraPaths”: [
“…/omni.isaac.core”
]

1 Like