diff --git a/ansible/install/python/python-install.yml b/ansible/install/python/python-install.yml new file mode 100644 index 0000000..001f82c --- /dev/null +++ b/ansible/install/python/python-install.yml @@ -0,0 +1,11 @@ +# NGINX Cook Book 74p +# [STEP 1] ansible-playbook -i ./keys/inventory.txt ./ansible/install/python/python-install.yml + +- name: Install python3, python3-pip + hosts: all + become: True + tasks: + - name: Install Python + shell: | + apt update + apt install python3-pip -y \ No newline at end of file