depth_renderer icon indicating copy to clipboard operation
depth_renderer copied to clipboard

No module named 'cyfusion'

Open UestcJay opened this issue 2 years ago • 5 comments

`(renderer) root@VGG-V100-LZ-2:~/lkq/depth_renderer# python depth_fusion.py Traceback (most recent call last): File "depth_fusion.py", line 9, in from external import pyfusion

File "/root/lkq/depth_renderer/external/pyfusion/init.py", line 8, in from cyfusion import * ModuleNotFoundError: No module named 'cyfusion'` many thanks for your great work. I follow the install step, but can not run the code. can you give me some help?

UestcJay avatar Mar 01 '22 11:03 UestcJay

@UestcJay did you figure out the solution?

harshpaal avatar Aug 30 '22 03:08 harshpaal

Then I did not use this repo...

UestcJay avatar Aug 30 '22 03:08 UestcJay

could you try 'pip install cython'?

yinyunie avatar Oct 13 '22 18:10 yinyunie

You can refer to this issue :) https://github.com/griegler/pyfusion/issues/1

wen-yuan-zhang avatar Aug 30 '23 06:08 wen-yuan-zhang

As mentioned by @zParquet , the solution in https://github.com/griegler/pyfusion/issues/1 actually works for me.

Though there's an error saying "No module named 'cyfusion', I actually have a 'cyfusion.cpython-36m-x86_64-linux-gnu.so' under ./external/pyfusion. The solution is to make sure your device can find it, by running the following command:

export LD_LIBRARY_PATH=your_path/depth_renderer/external/pyfusion/build:$LD_LIBRARY_PATH
export PYTHONPATH=your_path/depth_renderer/external/pyfusion:$PYTHONPATH

YuQiao0303 avatar Oct 17 '23 07:10 YuQiao0303