Installation

OpenGlider can be installed with pip, pixi, or conda. For development, use an editable install so the code and docs stay in sync.

pixi

If you use pixi, from the project root run:

pixi run freecad

to launch FreeCAD with OpenGlider installed in the environment.

conda

Conda packages are provided via conda-forge:

conda create -n openglider openglider freecad meshpy -c conda-forge

Manual / development install

Clone the repository, then either:

python setup.py develop

for a linked install (recommended for development), or:

python setup.py install

for a static install.

Building the documentation

From the project root:

pip install sphinx sphinx-rtd-theme  # or use your env)
cd docs
make html

The HTML output is in docs/build/html/. Open index.html in a browser.