Open YZhang001 opened 1 year ago
On your last solution. change the setup.py code to: def main(): robot_name = 'panda_arm' compile_ikfast( modulename='ikfast{}'.format(robot_name), cpp_filename='./pybullet_engine/ikfast/frankapanda/ikfast{}.cpp'.format(robot_name), remove_build=True ) Then it works: ikfast module ikfast_panda_arm imported successful
Hello. I was following the setting-up steps to see how Diffusion-CCSP works. But I got an error at the following step:
This is the log shown in terminal:
If I run
python pybullet_engine/ikfast/franka_panda/setup.py
directly from the/diffusion-ccsp
directory, it will give the following error:So I added a line
export PYTHONPATH=./Jacinle:$PYTHONPATH
in the setup.sh file and sourced it, then it's like:I think I already did everything mentioned in the previous steps. I cloned the Jacinle repo into
/diffusion-ccsp
. Did I miss anything or is the code still in development? Thank you.