-
|
This is a snapshot release of the final gradio PoC build. Install instructions: tldw_server – Installation Guide (Win/Mac/Linux)Requirements
1. Install System DependenciesLinux # Debian/Ubuntu
sudo apt install ffmpeg portaudio19-dev gcc build-essential python3-dev
# Fedora
sudo dnf install ffmpeg portaudio-devel gcc gcc-c++ python3-develmacOS brew install ffmpeg portaudioWindows
2. Download Software & Create Virtual Environment# Download this package via your choice, and then extract the folder to a location of your choosing, and then navigate to that folder via the terminal.
cd tldw_server
python3 -m venv .venv
# Activate:
# Linux/macOS:
source .venv/bin/activate
# Windows:
.venv\Scripts\activate3. Install Python Dependenciespip install -r requirements.txt4. Configure API Keyscp config.txt.example config.txt
# Edit config.txt with your keys & settingsAlternatively, use environment variables ( 5. Run the Serverpython summarize.py -guiOptional – Docker InstallCPU docker build -f Helper_Scripts/Dockerfiles/tldw_cpu_Dockerfile -t tldw-cpu .
docker run -p 8000:8000 tldw-cpuGPU docker build -f Helper_Scripts/Dockerfiles/tldw_nvidia_Dockerfile -t tldw-gpu .
docker run --gpus all -p 8000:8000 tldw-gpuThis discussion was created from the release PoC-Version-Final-Snapshot. |
Beta Was this translation helpful? Give feedback.
Answered by
rmusser01
Oct 31, 2025
Replies: 1 comment
-
|
Answer. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rmusser01
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Answer.