Skip to content

TracyWebTech/puppet-pip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

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
}