Added sample-run for tensorflow

This commit is contained in:
Benjamin Jacob Reji
2021-05-22 16:19:41 +04:00
parent 616f161c36
commit 93e7314289
53 changed files with 891 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
# General Dependencies
- name: install general apt dependencies
apt:
name: "{{ general.dependencies.apt }}"
state: present
update_cache: yes
- name: install general pip dependencies for Ansible
pip:
name: "{{ general.dependencies.pip }}"
state: present

View File

@@ -0,0 +1,3 @@
---
- import_tasks: debian.yml
when: ansible_facts['os_family']|lower == 'debian' # debian, ubuntu