Open3D Error w/ cx_Freeze #1087
-
Hey all -- I'm having an issue with using cx_Freeze with a large project. In it I have a file called The error I'm running into is I'm not sure why cx_Freeze is looking for that file in that folder when I don't think it should even exist at all. Any assistance is appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 44 replies
-
Check your start script if has relative imports. If you can rename this file or provides more information. For example, this error occurs when building or when run? |
Beta Was this translation helpful? Give feedback.
-
use yaml - the included package should be the import name. |
Beta Was this translation helpful? Give feedback.
-
The includes (for modules) and packages options use the compiled python (pyc) and extension (pyd), but the include_files include files as is. |
Beta Was this translation helpful? Give feedback.
The includes (for modules) and packages options use the compiled python (pyc) and extension (pyd), but the include_files include files as is.
If the bin and src are folders of your project, it has to has an
__init__.py
you can use as a packages option.For your pyyaml issue, if you uninstall the pyyaml, install the wheel package and install it with pip, cx_Freeze detect the metadata for it. cx_Freeze detect dist-info but not egg-info. But installing wheel it will be converted by pip.