Update dependencies for OUI, add matplotlib
This commit is contained in:
parent
33496e4eec
commit
8c5b9d97a7
4 changed files with 17 additions and 2 deletions
|
@ -1,7 +1,12 @@
|
|||
# Osnove umetne inteligence
|
||||
# Jure.Zabkar@fri.uni-lj.si, Ales.Papic@fri.uni-lj.si, matej.piculin@fri.uni-lj.si, Marko.Zeman@fri.uni-lj.si, bojan.zunkovic@fri.uni-lj.si
|
||||
# Orange, Weka 3, BayesFusion
|
||||
# matej.piculin@fri.uni-lj.si, petar.vracar@fri.uin-lj.si
|
||||
# Orange, Weka 3, BayesFusion, Python3
|
||||
dependencies:
|
||||
- role: orange
|
||||
- role: weka
|
||||
- role: bayesfusion
|
||||
- role: python3
|
||||
- role: pycharm
|
||||
- role: pandas
|
||||
- role: scipy
|
||||
- role: matplotlib
|
||||
|
|
4
roles/matplotlib/tasks/main.yml
Normal file
4
roles/matplotlib/tasks/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- import_tasks: main_win.yml
|
||||
when: ansible_os_family == 'Windows'
|
||||
- import_tasks: main_lin.yml
|
||||
when: ansible_os_family == 'Debian'
|
4
roles/matplotlib/tasks/main_lin.yml
Normal file
4
roles/matplotlib/tasks/main_lin.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Install maptplotlib
|
||||
apt:
|
||||
name: matplotlib
|
||||
state: latest
|
2
roles/matplotlib/tasks/main_win.yml
Normal file
2
roles/matplotlib/tasks/main_win.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
- name: Install matplotlib
|
||||
win_command: pip install matplotlib
|
Loading…
Add table
Add a link
Reference in a new issue