Skip to content

Commit 64a192c

Browse files
committed
Readme updated
1 parent c56436b commit 64a192c

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
puppet-pip
22
==========
33

4+
# Installing latest pip version:
5+
46
```
57
include pip
68
```
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

Comments
 (0)