Developer installation

Install the FreeCampus Math package or configure a contributor environment.

Learners can use the website and generated Colab lessons without configuring a local contributor environment.

Install the package

python -m pip install freecampus-math

The distribution is freecampus-math; the Python import is fcmath.

import fcmath
print(fcmath.__version__)

Contributor environment

conda env create -f conda/dev.yaml
conda activate fcmath
poetry config virtualenvs.create false
poetry install --extras "dev"

Run the full local gate with makim all.ci. Curriculum-only edits can start with makim curriculum.validate and a scoped Quarto render.

Back to top