mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 00:51:55 +00:00
* fix stupid "this forces us to do things the """right""" way" bullshit from python 3.11 (#79783) This is likely not the best way to go about this, but i do not want us to capitulate to python3's nanny state, suffocating levels of propriety bullshit. venv sucks and i fucking hate it. * fix stupid "this forces us to do things the """right""" way" bullshit from python 3.11 --------- Co-authored-by: Kyle Spier-Swenson <kyleshome@gmail.com>
51 lines
1.5 KiB
Bash
Executable File
51 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#find out what we have (+e is important for this)
|
|
set +e
|
|
has_git="$(command -v git)"
|
|
has_curl="$(command -v curl)"
|
|
has_cargo="$(command -v ~/.cargo/bin/cargo)"
|
|
has_sudo="$(command -v sudo)"
|
|
has_youtubedl="$(command -v youtube-dl)"
|
|
has_pip3="$(command -v pip3)"
|
|
set -e
|
|
set -x
|
|
|
|
# apt packages, libssl needed by rust-g but not included in TGS barebones install
|
|
if ! ( [ -x "$has_git" ] && [ -x "$has_curl" ] && [ -f "/usr/lib/i386-linux-gnu/libssl.so" ] ); then
|
|
echo "Installing apt dependencies..."
|
|
if ! [ -x "$has_sudo" ]; then
|
|
dpkg --add-architecture i386
|
|
apt-get update
|
|
apt-get install -y lib32z1 git pkg-config libssl-dev:i386 libssl-dev zlib1g-dev:i386 curl
|
|
else
|
|
sudo dpkg --add-architecture i386
|
|
sudo apt-get update
|
|
sudo apt-get install -y lib32z1 git pkg-config libssl-dev:i386 libssl-dev zlib1g-dev:i386 curl
|
|
fi
|
|
fi
|
|
|
|
# install cargo if needed
|
|
if ! [ -x "$has_cargo" ]; then
|
|
echo "Installing rust..."
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
. ~/.profile
|
|
fi
|
|
|
|
# install or update youtube-dl when not present, or if it is present with pip3,
|
|
# which we assume was used to install it
|
|
if ! [ -x "$has_youtubedl" ]; then
|
|
echo "Installing youtube-dl with pip3..."
|
|
if ! [ -x "$has_sudo" ]; then
|
|
apt-get update
|
|
apt-get install -y python3 python3-pip
|
|
else
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3 python3-pip
|
|
fi
|
|
pip3 install youtube-dl --break-system-packages
|
|
elif [ -x "$has_pip3" ]; then
|
|
echo "Ensuring youtube-dl is up-to-date with pip3..."
|
|
pip3 install youtube-dl -U --break-system-packages
|
|
fi
|