mirror of
https://github.com/Dvorinka/PlexSync.git
synced 2026-06-03 20:12:57 +00:00
12 lines
213 B
Bash
12 lines
213 B
Bash
#!/bin/bash
|
|
|
|
echo "Installing required Python packages..."
|
|
pip install -r requirements.txt
|
|
|
|
echo ""
|
|
echo "Starting Plex Playlist Sync Web Interface..."
|
|
python3 app.py
|
|
|
|
echo ""
|
|
read -p "Press Enter to continue..."
|