diff --git a/playbook-template/bootstrap.sh b/playbook-template/bootstrap.sh
index 77fe52162d67af0f5194a40af6c7be09b605a174..e60faac7131cbe402b1f5bea3a1b92c03271387c 100755
--- a/playbook-template/bootstrap.sh
+++ b/playbook-template/bootstrap.sh
@@ -8,7 +8,8 @@ echo ansible > requirements.python.txt
 if ! command -v virtualenv &>/dev/null; then
   echo "This command needs virtualenv to run."
   echo "Install it like this:"
-  printf "\tpip3 install --user virtualenv\n"
+  printf "\tapt install python3-pip\n"
+  printf "\tOR pip3 install --user virtualenv\n"
   printf "\texport PATH=\"~/.local/bin:\$PATH\"\n"
   exit 1
 fi