Ripser.py
A Lean Persistent Homology Library for Python
Install / Use
/learn @scikit-tda/Ripser.pyREADME
Ripser.py
Ripser.py is a lean persistent homology package for Python. Building on the blazing fast C++ Ripser package as the core computational engine, Ripser.py provides an intuitive interface for
- computing persistence cohomology of sparse and dense data sets,
- visualizing persistence diagrams,
- computing lowerstar filtrations on images, and
- computing representative cochains.
Additionally, through extensive testing and continuous integration, Ripser.py is easy to install on Mac, Linux, and Windows platforms.
To aid your use of the package, we've put together a large set of notebooks that demonstrate many of the features available. Complete documentation about the package can be found at ripser.scikit-tda.org.
Related Projects
If you're looking for the original C++ library, you can find it at Ripser/ripser.
If you're looking for a GPU-accelerated version of Ripser, you can find it at Ripser++
Setup
Ripser.py is available on pypi with wheels for all major platforms. To install, type the following command into your environment:
pip install ripser
Local build
If the above command fails or if you want to develop and contribute to
ripser.py, you can build ripser.py locally. To do so, clone this
repository. From within the cloned repository, execute pip install . to build
locally, or pip install -e . for a local,
editable
build. Either of the above two commands will install all required dependencies.
Explicitly, the dependencies of ripser.py are
- Cython,
- numpy,
- scipy,
- scikit-learn,
- persim,
and their required dependencies.
Windows users: If you are using a Windows machine, you may also need to install MinGW on your system.
Mac users: Updating your Xcode and Xcode command line tools will probably fix any issues you have with installation.
Optional dependency
Ripser.py when compiled from source can have a steroid<sup>1</sup> shot by replacing the standard unordered_map from the STL by one of the fastest implementation available: robin_hood. Benchmarking of Ripser.py using the robin_hood implementation showed speed-ups up to 30%.
To be able to use robin_hood instead of STL, you only need to clone the repository containing the implementation:
# Run this command at the root of the project
git clone https://github.com/martinus/robin-hood-hashing robinhood
After cloning robinhood with the above command, install ripser.py with
pip install -v .
This will install a local version of ripser.py with verbose output. In the verbose output,
you will see confirmation that robinhood was found or not.
<sup>1</sup> The Python package is already compiled with robin_hood by default.
If you are having trouble installing, please let us know!
Usage
The interface is as simple as can be:
import numpy as np
from ripser import ripser
from persim import plot_diagrams
data = np.random.random((100,2))
diagrams = ripser(data)['dgms']
plot_diagrams(diagrams, show=True)
We also supply a Scikit-learn transformer style object if you would prefer to use that:
import numpy as np
from ripser import Rips
rips = Rips()
data = np.random.random((100,2))
diagrams = rips.fit_transform(data)
rips.plot(diagrams)
<img src="https://i.imgur.com/WmQPYnn.png" alt="Ripser.py output persistence diagram" width="70%"/>
Contributions
We welcome all kinds of contributions! Please get in touch if you would like to help out. Everything from code to notebooks to examples and documentation are all equally valuable so please don't feel you can't contribute. To contribute please fork the project make your changes and submit a pull request. See scikit-tda's contributing docs for more detailed information. We will do our best to work through any issues with you and get your code merged into the main branch.
If you found a bug, have questions, or are just having trouble with the library, please open an issue in our issue tracker and we'll try to help resolve the concern.
License
Ripser.py is available under an MIT license! The core C++ code is derived from Ripser, which is also available under an MIT license and copyright to Ulrich Bauer. The modifications, Python code, and documentation is copyright to Christopher Tralie and Nathaniel Saul.
Citing
If you use this package, please site the JoSS paper found here and the JACT paper about Ripser found here
.
You can use the following bibtex entries:
@article{ctralie2018ripser,
doi = {10.21105/joss.00925},
url = {https://doi.org/10.21105/joss.00925},
year = {2018},
month = {Sep},
publisher = {The Open Journal},
volume = {3},
number = {29},
pages = {925},
author = {Christopher Tralie and Nathaniel Saul and Rann Bar-On},
title = {{Ripser.py}: A Lean Persistent Homology Library for Python},
journal = {The Journal of Open Source Software}
}
@article{Bauer2021Ripser,
AUTHOR = {Bauer, Ulrich},
TITLE = {Ripser: efficient computation of {V}ietoris-{R}ips persistence
barcodes},
JOURNAL = {J. Appl. Comput. Topol.},
FJOURNAL = {Journal of Applied and Computational Topology},
VOLUME = {5},
YEAR = {2021},
NUMBER = {3},
PAGES = {391--423},
ISSN = {2367-1726},
MRCLASS = {55N31 (55-04)},
MRNUMBER = {4298669},
DOI = {10.1007/s41468-021-00071-5},
URL = {https://doi.org/10.1007/s41468-021-00071-5},
}
Related Skills
feishu-drive
335.8k|
things-mac
335.8kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
335.8kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
yu-ai-agent
1.9k编程导航 2025 年 AI 开发实战新项目,基于 Spring Boot 3 + Java 21 + Spring AI 构建 AI 恋爱大师应用和 ReAct 模式自主规划智能体YuManus,覆盖 AI 大模型接入、Spring AI 核心特性、Prompt 工程和优化、RAG 检索增强、向量数据库、Tool Calling 工具调用、MCP 模型上下文协议、AI Agent 开发(Manas Java 实现)、Cursor AI 工具等核心知识。用一套教程将程序员必知必会的 AI 技术一网打尽,帮你成为 AI 时代企业的香饽饽,给你的简历和求职大幅增加竞争力。
