pip install trueform
This installs:
For development or unsupported platforms:
git clone https://github.com/xlabmedical/trueform.git
cd trueform
CMAKE_BUILD_PARALLEL_LEVEL=8 pip wheel . -w dist
pip install dist/trueform-*.whl
Or using CMake directly:
cmake -B build -DTF_BUILD_PYTHON=ON
cmake --build build --parallel --target trueform_python
pip install ./build/python
import trueform as tf
print(tf.__version__)