Interactive Parallel Computing with IPython
Project description
# Interactive Parallel Computing with IPython
ipyparallel is the new home of IPython.parallel.
## Install
Install ipyparallel:
pip install ipyparallel
To install the `IPython Clusters` tab in Jupyter Notebook, add this to your `jupyter_notebook_config.py`:
```python
c.NotebookApp.server_extensions.append('ipyparallel.nbextension')
```
## Run
Start a cluster:
ipcluster start
Use it from Python:
```python
import os
import ipyparallel as ipp
rc = ipp.Client()
ar = rc[:].apply_async(os.getpid)
pid_map = ar.get_dict()
```
See [the docs](https://ipyparallel.readthedocs.org) for more info.
ipyparallel is the new home of IPython.parallel.
## Install
Install ipyparallel:
pip install ipyparallel
To install the `IPython Clusters` tab in Jupyter Notebook, add this to your `jupyter_notebook_config.py`:
```python
c.NotebookApp.server_extensions.append('ipyparallel.nbextension')
```
## Run
Start a cluster:
ipcluster start
Use it from Python:
```python
import os
import ipyparallel as ipp
rc = ipp.Client()
ar = rc[:].apply_async(os.getpid)
pid_map = ar.get_dict()
```
See [the docs](https://ipyparallel.readthedocs.org) for more info.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
ipyparallel-4.0.0.zip
(2.3 MB
view hashes)
ipyparallel-4.0.0.tar.gz
(2.3 MB
view hashes)
Built Distribution
Close
Hashes for ipyparallel-4.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a95a46c1cc55e84028e1b90ea869b2a98ec4955507e7592b18ea9529fe7f803 |
|
MD5 | d07a9da00014c49055bf236cc7b52e04 |
|
BLAKE2b-256 | 19942baea3fa7c470fff4b03ccf6caca7cff0f0560521eca85cc270dbe26e3b4 |