dotfiles/roles/pip/tasks/install/redhat.yml

12 lines
186 B
YAML
Raw Normal View History

---
# pip on redhat
- name: (rHa) installing pip
ansible.builtin.yum:
name:
- python3-pip
- python-virtualenv
state: present
update_cache: true
become: true