I just start using Isaac-gym, and I follow the install guidance. But why I try to run example, it show 65837 segmentation fault (core dumped)
I check dependencies, list as follows
I write a very simple program to show the bug (it is due to
create_sim
)
from isaacgym import gymapi
gym = gymapi.acquire_gym()
sim_params = gymapi.SimParams()
sim_params.physx.use_gpu = True
try:
sim = gym.create_sim(0, 0, gymapi.SIM_PHYSX, sim_params)
except:
print("except")
print("done")
The output is
Importing module 'gym_38'
(/root/project/isaacgym/python/isaacgym/_bindings/linux-x86_64/gym_38.s0)
Setting GYM_USD_PLUG_INFO_PATH to /root/project/isaacgym/python/isaacgym/_bindings/linux-x86_64/usd/plugInfo.json
Not connected to PVD
+++ Using GPU PhysX
Physics Engine: PhysX
Physics Device: cuda:0
GPU Pipeline: disabled
[1]
78615 segmentation fault (core dumped)
python debug. py
create_sim
Doesn’t success and throw core dumped. Anyone know why? Or have any advice? Thank a lot!