-
Notifications
You must be signed in to change notification settings - Fork 2
installation
Bluemi edited this page Sep 5, 2025
·
1 revision
Install from PyPI. This is best for most users.
pip install deglibYou can also compile deglib yourself.
This can be useful if you want to:
- make use of AVX512 instructions
- have the newest version
- develop new features
# get the source
git clone https://github.com/Visual-Computing/DynamicExplorationGraph.git
cd DynamicExplorationGraph/python/
# create virtualenv
python -m venv venv && . venv/bin/activate
# install build dependencies
pip install setuptools>=77.0 pybind11 build
python setup.py copy_build_files # copy c++ library to ./lib/
# install
pip install .