Puppet Class: python::ipython

Defined in:
manifests/ipython.pp

Overview

Class: python::ipython

Installs the IPython shell.

Parameters

package

The package name to install, defaults to ‘ipython’.

version

The package version to install, defaults to ‘installed’.

provider

Package provider to use, defaults to ‘pip’.

Parameters:

  • package (Any) (defaults to: 'ipython')
  • version (Any) (defaults to: 'installed')
  • provider (Any) (defaults to: 'pip')


16
17
18
19
20
21
22
23
24
25
26
# File 'manifests/ipython.pp', line 16

class python::ipython(
  $package  = 'ipython',
  $version  = 'installed',
  $provider = 'pip',
) {
  package { $package:
    ensure   => $version,
    provider => $provider,
    require  => Class['python'],
  }
}