Skip to content

Problem with pykdtree on Mac OS ARM #41

@maxmen

Description

@maxmen

On a Mac with ARM M3 processor, QuickView gets stuck, likely because of an issue with pykdtree. My solution was editing Particles.py and making the following changes:

  • add:
    from scipy.spatial import cKDTree

  • substitute:
    def __make_kdtree(self, pos):
    return KDTree(pos)
    with
    def __make_kdtree(self, pos):
    return cKDTree(pos)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions