We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c56436b commit 64a192cCopy full SHA for 64a192c
1 file changed
README.md
@@ -1,6 +1,21 @@
1
puppet-pip
2
==========
3
4
+# Installing latest pip version:
5
+
6
```
7
include pip
8
9
10
+# Installing a package using pip:
11
12
+```puppet
13
14
+pip::install { 'Django':
15
+ package => 'Django' # defaults to $title
16
+ version => '1.6', # if undef installs latest version
17
+ python_version => '3.3', # defaults to 2.7
18
+ ensure => present # defaults to present
19
+}
20
21
+```
0 commit comments