PortValhalla/scripts/Software/Python/setup.sh

10 lines
176 B
Bash
Raw Normal View History

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