2014-11-18 08:24:39 -05:00
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
sudo: yes
|
|
|
|
tasks:
|
|
|
|
|
2014-12-03 22:09:38 -05:00
|
|
|
- name: install Python setuptools dependencies
|
2014-11-19 16:27:37 -05:00
|
|
|
apt: pkg={{ item }} state=present
|
|
|
|
with_items:
|
|
|
|
- python-dev
|
|
|
|
- python-setuptools
|
2014-11-18 08:24:39 -05:00
|
|
|
|
2014-12-03 22:09:38 -05:00
|
|
|
- name: bootstrap PIP using setuptools
|
2014-11-19 16:27:37 -05:00
|
|
|
easy_install: name=pip
|
2014-11-18 08:24:39 -05:00
|
|
|
|
2014-12-03 22:09:38 -05:00
|
|
|
- name: install Python virtualenv
|
|
|
|
pip: name=virtualenv
|