PortValhalla/scripts/Software/Python/setup.sh

10 lines
176 B
Bash
Executable file

#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE";
else
apt install -y python3 python-is-python3 python3-pip;
pip install pipenv;
fi