mpich
A high performance implementation of MPI
What it is and what it does
MPICH is a production-grade implementation of the Message Passing Interface standard, widely deployed on HPC systems and supported by vendors including Intel and HPE. It provides the mpicc compiler wrapper, mpiexec process manager, and core MPI runtime needed to build and run parallel applications across single or multiple nodes. The package comes with the Hydra process manager by default and supports multiple network modules (OFI, UCX) for different interconnect hardware.
Typical use involves configuring MPICH with a chosen device and network module, installing it to a shared filesystem path visible on all compute nodes, then using mpicc to compile parallel C/C++/Fortran code and mpiexec to launch jobs across the cluster. It is not a Python library in the traditional sense—it is a system-level MPI runtime that Python applications can call into via bindings.
Use it for:
- Compile and run parallel C/C++/Fortran applications on HPC clusters using standard MPI calls.
- Set up a multi-node compute environment where applications communicate via message passing.
- Deploy on Top 500 HPC systems or vendor-supported clusters (Intel, HPE, ParTec infrastructure).
- Develop and test parallel algorithms that require inter-process communication across distributed nodes.
- Integrate with existing HPC workflows that expect mpicc, mpiexec, and standard MPI headers.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides a high-performance Message Passing Interface (MPI) implementation for parallel computing applications, with support for multiple network modules and process management.
Yes, if you are building or running parallel HPC applications on a cluster and need a widely-adopted, vendor-supported MPI implementation. No, if you are looking for a Python library for parallel computing—this is a system runtime, not a Python package. Yes-with-conditions if you are unfamiliar with MPI or HPC: expect to configure and install to a shared filesystem, understand process management, and have appropriate compilers available.
Install
mpich on PyPI
pip
pip install mpichuv
uv add mpichpoetry
poetry add mpichInstalling mpich
Before you install
Medium install friction due to platform-specific wheels (macOS arm64/x86_64, Linux aarch64/x86_64) and no runtime Python dependencies, but requires system-level C compiler and optional Fortran/C++ compilers depending on use case.
License in practice
License treatment is unclear—the package uses a custom LicenseRef-MPICH identifier with no SPDX mapping. Review the project's actual license terms before adopting in proprietary or restricted-distribution contexts.
Quickstart
# After installation, add to PATH:
export PATH=/path/to/mpich-install/bin:$PATH
# Compile an MPI program:
mpicc -o myapp myapp.c
# Run on local machine with n processes:
mpiexec -n 4 ./myapp
Requires a C99-compliant C compiler; optional Fortran and C++ compilers if building Fortran or C++ applications. Installation directory must be at the same path on all nodes in a cluster (typically on shared NFS).
Verify before relying
- Whether the PyPI wheel includes pre-built MPICH binaries or requires local compilation.
- Python version requirements or compatibility constraints not specified in the fact sheet.
- Whether the package works with Windows or only Unix-like systems.
Package facts
| License | LicenseRef-MPICH (unclear) |
| Python support | not specified |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 29 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 91,121/month — #13,539 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: mpich-5.0.1.post1-py3-none-macosx_11_0_arm64.whl; mpich-5.0.1.post1-py3-none-macosx_11_0_x86_64.whl; mpich-5.0.1.post1-py3-none-manylinux_2_28_aarch64.whl; mpich-5.0.1.post1-py3-none-manylinux_2_28_x86_64.whl
Tags
More Distributed Computing packages
gRPC Python is an HTTP/2-based RPC framework…
permissive · top 100 on PyPI
execnetexecnet lets you spawn and communicate with…
permissive · top 1,000 on PyPI
cloudpickleCloudpickle extends Python's standard pickle…
permissive · top 1,000 on PyPI
smart-openProvides a unified, open()-compatible Python…
permissive · top 1,000 on PyPI
portalockerPortalocker provides cross-platform file…
permissive · top 1,000 on PyPI
rayRay is a distributed computing framework that…
permissive · top 1,000 on PyPI
impi-rtProvides Intel's standards-based MPI…
unclear · top 15,000 on PyPI
mpi4pympi4py provides Python bindings for the Message…
permissive · top 5,000 on PyPI
openmpiProvides a Python interface to Open MPI, a…
unclear · top 15,000 on PyPI
pytest-mpiA pytest plugin that marks and runs tests under…
permissive · top 15,000 on PyPI
intel-openmpProvides Intel's OpenMP runtime library for…
unclear · top 5,000 on PyPI
distributed-ucxx-cu12Provides a high-performance UCX communication…
permissive · top 15,000 on PyPI
distributedDistributed provides a scheduler and runtime…
permissive · top 5,000 on PyPI
oneccl-develProvides Intel's oneAPI Collective…
unclear · top 15,000 on PyPI
nvidia-nvshmem-cu13NVSHMEM provides a global address space for GPU…
unclear · top 1,000 on PyPI
carolinaCarolina is a Python wrapper around Dakota, a…
permissive · top 15,000 on PyPI