install pip from source

This commit is contained in:
Andreas Zweili 2021-10-25 13:22:16 +02:00
parent 6e091acfbc
commit c3d5ac7eb6
2 changed files with 10 additions and 1 deletions

View File

@ -23,3 +23,13 @@
- name: "Lock root user"
command: "passwd -l root"
- name: "Download Pip"
get-url:
url: "https://bootstrap.pypa.io/get-pip.py"
dest: "/tmp/get-pip.py"
mode: "0644"
- name: "Install pip"
command:
cmd: "python3 /tmp/get-pip.py"

View File

@ -10,7 +10,6 @@ apt_packages:
- tmux
- git
- tree
- python3-pip
- mosh
timezone: Europe/Zurich