X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=ansible%2Finstall.yml;h=19c1ef201168a15b179bd10dee2b7a2f11071ce9;hb=13e8277bdd786b6524d2225af1395cfa9f358401;hp=e3e2f38ca1771e7bc4e0ab830327df4158c0d51c;hpb=c68c68ea5d7439b5bdb9a18606e5444a3bc3a679;p=osm%2Fvim-emu.git diff --git a/ansible/install.yml b/ansible/install.yml old mode 100644 new mode 100755 index e3e2f38..19c1ef2 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -15,14 +15,41 @@ - name: install pip apt: pkg=python-pip state=installed + - name: install setuptools + pip: name=setuptools state=latest + - name: install zerorpc - pip: name=zerorpc + pip: name=zerorpc state=latest - name: install tabulate - pip: name=tabulate + pip: name=tabulate state=latest - name: install argparse - pip: name=argparse + pip: name=argparse state=latest + + - name: install networkx + pip: name=networkx state=latest + + - name: install six + pip: name=six state=latest + + - name: install ryu + pip: name=ryu state=latest + + - name: install oslo.config + pip: name=oslo.config state=latest + + - name: install pytest + pip: name=pytest state=latest + + - name: install Flask + pip: name=Flask state=latest + + - name: install flask_restful + pip: name=flask_restful state=latest + + - name: install requests + pip: name=requests state=latest - - name: install pprint - pip: name=pprint + - name: install docker-py + pip: name=docker-py state=latest