geotoken — Installation
geotoken is a pure NumPy/Pydantic library — trimesh is optional (only for mesh
I/O), and PyTorch is not required.
# From the repository rootpip install -e ./geotoken
# With mesh processing support (trimesh)pip install -e "./geotoken[mesh]"
# With development toolspip install -e "./geotoken[dev]"Requirements
- Python ≥ 3.9
- numpy ≥ 1.24
- pydantic ≥ 2.0
- trimesh ≥ 3.20 (optional, for mesh processing)
Heavy dependencies (scipy, trimesh) are imported lazily, so the core import is light.
Continue to Usage.