Vox-Fusion icon indicating copy to clipboard operation
Vox-Fusion copied to clipboard

Failed to build `sparse_octree` and `sparse_voxels` on system with `ninja` installed

Open TomCC7 opened this issue 1 year ago • 0 comments

The reason is that torch will use ninja to build if it's installed and caused a header path issue. To solve the issue, replacing the line in third_party/sparse_octree/setup.py and third_party/sparse_voxels/setup.py

    cmdclass={
        'build_ext': BuildExtension
    }

with

    cmdclass={
        'build_ext': BuildExtension.with_options(use_ninja=False)
    }

TomCC7 avatar Mar 07 '23 22:03 TomCC7