9 lines
176 B
Bash
Executable file
9 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
|