diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..9f12314 --- /dev/null +++ b/setup.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ "$EUID" -ne 0 ] + then echo "Please run as root" + exit +fi + +echo "Updating packages" +apt-get update + +echo "Installing Python 3" +apt-get install python3 + +echo "Installing pip" +apt-get install python3-pip + +echo "Done!" \ No newline at end of file