반응형
ubuntu 20.04
-
ansible - ubuntu 20.04 에 python2, pip 설치하기DEV 2021. 6. 11. 16:52
- name: add apt-repository universe become: true shell: add-apt-repository universe - name: update apt become: true shell: apt update - name: install python2 become: true shell: apt install python2 - name: download pip shell: curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py - name: install pip2 become: true shell: python2 get-pip.py