Skip to content

TracyWebTech/puppet-pip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Aug 26, 2020
00856b4 · Aug 26, 2020

History

38 Commits
Aug 26, 2020
Feb 21, 2014
Feb 21, 2014
Aug 5, 2014
Aug 26, 2020

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
}