https://github.com/geometric-intelligence/polpo
A Geometric Intelligence Lab's collection of weakly-related tools.
https://github.com/geometric-intelligence/polpo
dash mesh mri pipeline preprocessing
Last synced: 10 months ago
JSON representation
A Geometric Intelligence Lab's collection of weakly-related tools.
- Host: GitHub
- URL: https://github.com/geometric-intelligence/polpo
- Owner: geometric-intelligence
- License: mit
- Created: 2024-11-09T06:04:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-23T18:44:03.000Z (11 months ago)
- Last Synced: 2025-07-23T21:27:01.952Z (11 months ago)
- Topics: dash, mesh, mri, pipeline, preprocessing
- Language: Python
- Homepage: https://geometric-intelligence.github.io/polpo/
- Size: 75.6 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.md
Awesome Lists containing this project
README
POLPO
=====
A `Geometric Intelligence Lab `_'s collection of weakly-related tools.
Installation
------------
To install ``polpo`` and its required dependencies:
::
pip install polpo@git+https://github.com/geometric-intelligence/polpo.git@main
Or equivalently, first manually clone the repo and proceed with a local installation of dependencies:
::
git clone https://github.com/geometric-intelligence/polpo.git
cd polpo
pip install .
Optional dependencies
*********************
``polpo`` depends heavily on external libraries.
To minimize installation load, different sets of optional dependencies are available in `pyproject.toml <./pyproject.toml>`_.
Choose the one that is more convenient to your use case.
For example, to install ``polpo`` and all the optional dependencies for the dash capabilities, you can run:
::
pip install polpo[dash]@git+https://github.com/geometric-intelligence/polpo@main
NB: Use flag ``-e`` for editable mode.
To install all optional dependencies, you can run:
::
pip install polpo[all]@git+https://github.com/geometric-intelligence/polpo@main.
This is recommended if you plan to use ``polpo`` for development purposes, as it will install all the optional dependencies required for testing and other features.
Virtual environments
********************
Often, it is convenient to install a package within a virtual environment.
We recommend using `conda `_:
::
conda create -n polpo python=3.11
conda activate polpo
after which you can install ``polpo`` as described above.