Other Installation Methods
If you prefer not to use the installer, or need to install LYTE manually, follow these alternative installation methods.
EXE Installation
If you prefer not to use the installer, you can use the standalone EXE:
Prerequisites
- Windows 10 or later
- Python installed and added to PATH
- VLC media player (same architecture as Python, usually x64)
Steps
- Download and extract the latest release's
.exefile to any folder on your computerImportant: The
.exewill create files upon execution, so extract it to a dedicated folder. - Install Python (if not already installed):
- Download from python.org
- During installation, make sure to check "Add Python.exe to PATH"
- Verify installation: Run
pip install --upgrade pipin terminal
- Install VLC:
- Download from videolan.org
- CRITICAL: VLC architecture MUST match Python architecture (usually x64)
- To install x64 VLC: On downloads page, click arrow next to "Download VLC" and select "Windows 64bit"
- Verify Python architecture:
python -c "import platform; print(platform.architecture()[0])"
- Run LYTE.exe:
- Navigate to the folder where you extracted the release
- Run
LYTE.exe
Important: If Windows shows "Windows Protected Your PC", click "More info" then "Run anyway"
- Configure LYTE:
- In the settings window, change
YOUTUBE_VIDEO_IDto your livestream ID - Optional: Adjust other settings
- Click "Save and Start"
- In the settings window, change
- Use the Control Panel:
- Play/pause, skip, adjust volume, scrub through music
- Edit settings while running
- Toggle light/dark mode
- Always use the Quit button to close properly
Python Source Installation
For developers or users who prefer running from source:
Prerequisites
- Windows 10 or later
- Python installed and added to PATH
- pip (usually included with Python)
- VLC media player (same architecture as Python, usually x64)
Steps
- Download source code:
- Clone the repository:
git clone https://github.com/StroepWafel/LYTE.git - Or download latest release source code
- Clone the repository:
- Install Python (if not already installed):
- Download from python.org
- During installation, make sure to check "Add Python.exe to PATH"
- Verify: Run
pip install --upgrade pipin terminal
- Install Python dependencies:
- Navigate to the
Srcfolder - Install requirements:
pip install -r requirements.txt - Required packages: pytchat, yt-dlp, requests, plyer, python-vlc, dearpygui, forex-python
- Navigate to the
- Install VLC:
- Download from videolan.org
- CRITICAL: VLC architecture MUST match Python architecture (usually x64)
- To install x64 VLC: On downloads page, click arrow next to "Download VLC" and select "Windows 64bit"
- Run LYTE:
- Open Command Prompt (Win+R, type
cmd, Enter) - Navigate to the
Srcfolder:cd path\to\LYTE\Src - Run:
python main.py
- Open Command Prompt (Win+R, type
- Configure LYTE:
- In the settings window, change
YOUTUBE_VIDEO_IDto your livestream ID - Optional: Adjust other settings
- Click "Save and Start"
- In the settings window, change
- Use the Control Panel:
- Play/pause, skip, adjust volume, scrub through music
- Edit settings while running
- Toggle light/dark mode
- Always use the Quit button to close properly
Development Installation
For developers who want to build from source:
- Clone the repository:
git clone https://github.com/StroepWafel/LYTE.git - Follow the build instructions in the repository's README
- Run the application from the build output directory
Troubleshooting Installation
If you encounter issues during installation, check the Troubleshooting & FAQ section for common problems and solutions.