Skip to content

TracyWebTech/puppet-pip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Aug 13, 2014
848e985 · Aug 13, 2014

History

21 Commits
Aug 8, 2014
Feb 21, 2014
Feb 21, 2014
Aug 13, 2014
Aug 5, 2014

Repository files navigation

puppet-pip

Installing latest pip version:

include pip

Installing a package using pip:

pip::install { 'Django':
  package        => 'Django', # defaults to $title
  version        => '1.6',    # if undef installs latest version
  python_version => '3.3',    # defaults to 2.7
  ensure         => present,  # defaults to present
}