xygt/install.sh

10 lines
263 B
Bash
Raw Normal View History

2024-01-05 15:18:55 +01:00
# Might dockerise this stuff sooner or later, not now tho.
if [ $EUID -ne 0 ]; then
echo "This script must be run as root."
exit 1
fi
apt install mongodb-org python3-pip python3-venv
echo "Installation complete, launch xygt with ./run.py (in the venv)"