File size: 508 Bytes
f1c8ee5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Tested using Python 3.9
echo "Making and activating a new virtual environment..."
python3.9 -m venv venv
echo "Activating the virtual environment..."
source venv/bin/activate
echo "Upgrading pip..."
pip install --upgrade pip
echo "Instaling the required packages..."
pip install -r requirements.txt
echo "Instaling the exiftool package for adding file metadata on Linux..."
sudo apt install -y exiftool
echo "Installing ffmpeg..."
sudo apt install ffmpeg
echo "All packages installed successfully!"
|