Interactive Parallel Computing with IPython
Project Links
Meta
Author: IPython Development Team
Requires Python: >=3.10
Classifiers
Framework
- Jupyter
- Jupyter :: JupyterLab
- Jupyter :: JupyterLab :: 4
- Jupyter :: JupyterLab :: Extensions
- Jupyter :: JupyterLab :: Extensions :: Prebuilt
Intended Audience
- Developers
- Science/Research
- System Administrators
License
- OSI Approved :: BSD License
Programming Language
- Python
Interactive Parallel Computing with IPython
IPython Parallel (ipyparallel) is a Python package and collection of CLI scripts for controlling clusters of IPython processes, built on the Jupyter protocol.
IPython Parallel provides the following commands:
- ipcluster - start/stop/list clusters
- ipcontroller - start a controller
- ipengine - start an engine
Install
Install IPython Parallel:
pip install ipyparallel
This will install and enable the IPython Parallel extensions for Jupyter Notebook and (as of 7.0) Jupyter Lab 3.0.
Run
Start a cluster:
ipcluster start
Use it from Python:
import os
import ipyparallel as ipp
cluster = ipp.Cluster(n=4)
with cluster as rc:
ar = rc[:].apply_async(os.getpid)
pid_map = ar.get_dict()
See the docs for more info.
9.1.0
Mar 10, 2026
9.0.2
Oct 09, 2025
9.0.1
Mar 03, 2025
9.0.0
Nov 06, 2024
8.8.0
Apr 05, 2024
8.7.0
Mar 04, 2024
8.6.1
Apr 14, 2023
8.6.0
Apr 13, 2023
8.5.1
Mar 28, 2023
8.5.0
Mar 17, 2023
8.4.1
Jun 20, 2022
8.4.0
Jun 16, 2022
8.3.0
May 09, 2022
8.2.1
Apr 01, 2022
8.2.0
Feb 07, 2022
8.1.0
Dec 22, 2021
8.0.0
Nov 12, 2021
8.0.0b1
Oct 29, 2021
7.1.0
Sep 30, 2021
7.0.1
Sep 10, 2021
7.0.0
Sep 10, 2021
7.0.0b3
Sep 07, 2021
7.0.0b2
Aug 11, 2021
7.0.0b1
Aug 11, 2021
7.0.0a5
Jul 10, 2021
7.0.0a4
Jul 03, 2021
7.0.0a3
Jun 25, 2021
7.0.0a1
Jun 04, 2021
6.3.0
May 05, 2020
6.2.5
Apr 20, 2020
6.2.4
May 13, 2019
6.2.3
Oct 19, 2018
6.2.2
Jun 29, 2018
6.2.1
Jun 05, 2018
6.2.0
Jun 04, 2018
6.1.1
Feb 07, 2018
6.1.0
Feb 05, 2018
6.0.2
Feb 23, 2017
6.0.1
Feb 10, 2017
6.0.0
Jan 11, 2017
5.2.0
Aug 17, 2016
5.1.1
Jun 24, 2016
5.1.0
Jun 09, 2016
5.0.1
Feb 20, 2016
5.0.0
Feb 03, 2016
4.1.0
Oct 27, 2015
4.0.2
Aug 19, 2015
4.0.1
Aug 18, 2015
4.0.0
Jul 20, 2015
2.0.0rc1
Nov 11, 2021