--- - block: - name: Install python 3 package package: name: "{{ item }}" state: present with_items: - python36 - name: Setup pip3 command: /bin/python3.6 -m ensurepip - name: Link binaries to '__python3_link_bin_path' file: src: "{{ item.src }}" dest: "{{ __python3_link_bin_path }}/{{ item.dest }}" state: link with_items: - { src: /bin/python3.6, dest: python3 } - { src: /usr/local/bin/pip3.6, dest: pip3 } become: True become_user: root