Fix: Removed more zeromq dependencies.
[osm/vim-emu.git] / ansible / install.yml
1 - hosts: localhost
2   tasks:
3    - name: updates apt
4      apt: update_cache=yes
5      
6    - name: install python-dev
7      apt: pkg=python-dev state=installed
8
9    - name: install libffi-dev
10      apt: pkg=libffi-dev state=installed
11
12    - name: install libssl-dev
13      apt: pkg=libssl-dev state=installed
14
15    - name: install pip
16      apt: pkg=python-pip state=installed
17
18    - name: install setuptools
19      pip: name=setuptools state=latest
20
21    - name: install tabulate
22      pip: name=tabulate state=latest
23
24    - name: install argparse
25      pip: name=argparse state=latest
26
27    - name: install networkx
28      pip: name=networkx state=latest
29
30    - name: install six
31      pip: name=six state=latest
32
33    - name: install ryu
34      pip: name=ryu state=latest
35      
36    - name: install oslo.config
37      pip: name=oslo.config state=latest
38
39    - name: install pytest
40      pip: name=pytest state=latest
41
42    - name: install Flask
43      pip: name=Flask state=latest
44
45    - name: install flask_restful
46      pip: name=flask_restful state=latest
47
48    - name: install requests
49      pip: name=requests state=latest
50
51    - name: install docker
52      pip: name=docker version=2.0.2
53
54    - name: install prometheus_client
55      pip: name=prometheus_client state=latest
56
57    - name: install latest urllib3 (fix error urllib3.connection.match_hostname = match_hostname)
58      pip: name=urllib3 version=1.21.1
59
60    - name: install iptc
61      pip: name=python-iptables state=latest
62
63    - name: install ipaddress
64      pip: name=ipaddress state=latest
65
66    #- name: install urllib
67    #  pip: name=urllib state=latest
68
69
70