The Wayback Machine - https://web.archive.org/web/20201117123947/https://github.com/ktargows/ipyparallel
Skip to content
master
Go to file
Code
This branch is 290 commits behind ipython:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Interactive Parallel Computing with IPython

ipyparallel is the new home of IPython.parallel.

Install

Install ipyparallel:

pip install ipyparallel

To enable the IPython Clusters tab in Jupyter Notebook:

ipcluster nbextension enable

To disable it again:

ipcluster nbextension disable

See the documentation on configuring the notebook server to find your config or setup your initial jupyter_notebook_config.py.

Run

Start a cluster:

ipcluster start

Use it from Python:

import os
import ipyparallel as ipp

rc = ipp.Client()
ar = rc[:].apply_async(os.getpid)
pid_map = ar.get_dict()

See the docs for more info.

About

Interactive Parallel Computing in Python

Resources

License

Packages

No packages published
You can’t perform that action at this time.