123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- ---
- - hosts: localhost
- gather_facts: no
- connection: local
- become: True
- vars:
- - git_url: "git@github.com:kalliope-project/kalliope.git"
- - temp_local_repo: "/tmp/kalliope_repo"
- - install_path: "/usr/lib/kalliope"
- tasks:
- - name: Install packages
- apt: name={{ item }} update_cache=yes
- with_items:
- - python-pip
- - python-dev
- - libsmpeg0
- - libttspico-utils
- - libsmpeg0
- - flac
- - dialog
- - libffi-dev
- - libssl-dev
- - portaudio19-dev
- - build-essential
- - sox
- - libatlas3-base
- - mplayer
- - name: Copy requirement
- copy:
- src: python_requirements.txt
- dest: /tmp/requirements.txt
- - name: Upgrade pip
- pip:
- name: pip
- state: latest
- - name: Install python libs
- pip:
- requirements=/tmp/requirements.txt
|