Update dependencies for OUI, add matplotlib

This commit is contained in:
polz 2025-08-13 11:46:03 +02:00
parent 33496e4eec
commit 8c5b9d97a7
4 changed files with 17 additions and 2 deletions

View file

@ -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

View 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'

View file

@ -0,0 +1,4 @@
- name: Install maptplotlib
apt:
name: matplotlib
state: latest

View file

@ -0,0 +1,2 @@
- name: Install matplotlib
win_command: pip install matplotlib