Hi,
I am trying to configure my anaconda environment to control a robot in IsaacSim. I did source the setup_conda_env.sh but I am not able to find some modules:
- in this sample it cannot find module pxr:
import omni
from pxr import PhysicsSchemaTools
stage = omni.usd.get_context().get_stage()
PhysicsSchemaTools.addGroundPlane(stage, "/World/groundPlane", "Z", 100, Gf.Vec3f(0, 0, -100), Gf.Vec>
- in this sample, it cannot find omni.isaac.core
import numpy as np
from omni.isaac.core.objects import DynamicCuboid
from omni.isaac.core.objects.ground_plane import GroundPlane
from omni.isaac.core.physics_context import PhysicsContext
I also would like to communicate my python code with the IsaacSim in another computer. Is that possible?
Thank you in advance,