Install & Compatibility
Where this runs
tested against v11.3.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
build_error
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 4.0s · import 0.000s · 130MB
127MB installed
● package 127MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
GeodeSimplexBRepLibrary
✓ from geode_simplex import GeodeSimplexBRepLibrary
✗ from geode_simplex import SimplexRemesher
GeodeSimplexMetricLibrary
✓ from geode_simplex import GeodeSimplexMetricLibrary
GeodeSimplexSectionLibrary
✓ from geode_simplex import GeodeSimplexSectionLibrary
Basic example: load a tetrahedral mesh, set target edge length, remesh, and save.
from geode_simplex import SimplexRemesher
import opengeode
# Load a tetrahedral mesh
mesh = opengeode.load_mesh('input.mesh')
# Initialize remesher
remesher = SimplexRemesher(mesh)
remesher.set_target_edge_length(0.5)
# Perform remeshing
new_mesh = remesher.remesh()
opengeode.save_mesh(new_mesh, 'output.mesh')
Upgrade
Version history
11.3.1latest on PyPI · released Jun 18, 2026
Audit
Dependencies
opengeode-corerequiredProvides underlying geometry and mesh data structures required by geode-simplex.