Introduction The procedure for installing Python 3 in RHEL 7.3 of AWS EC 2 is described. YAML test.yml --- - name: Python 3 install hosts: ec2 gather_facts: False become: true roles: - { role: common } - { role: python } roles/python/tasks/main.yml --- - name: yum yum: name={{item}} state=latest with_items: "{{ python_yum }}" - name: unarchive unarchive: src: "{{ python_url }}" dest: "{{ python_tm