Space non working * image result - > URL error, pleace contact the admin

#10
by mpjay - opened

Screenshot 2025-07-22 133540.png

The space isn't working. It randomly displays "error" or "URL error, please contact the admin." Can you check what's happening? Thank you very much. :)

FROM python:3.13-slim

Instalar dependĂȘncias bĂĄsicas

RUN apt-get update && apt-get install -y
build-essential
ffmpeg
&& rm -rf /var/lib/apt/lists/*

Instalar dependĂȘncias Python

WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

Corrigir ausĂȘncia do audioop

RUN pip install pyaudioop

COPY . .
CMD ["python", "app.py"]

pip install pyaudioop

gradio
pydub
pyaudioop

FROM python:3.12-slim

pyenv install 3.12.2
pyenv local 3.12.2

pip install pyaudioop

pip install --upgrade pydub gradio

pip install --upgrade pydub gradio

FROM python:3.13-slim

Instalar dependĂȘncias bĂĄsicas

RUN apt-get update && apt-get install -y
build-essential
ffmpeg
&& rm -rf /var/lib/apt/lists/*

Instalar dependĂȘncias Python

WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

Corrigir ausĂȘncia do audioop

RUN pip install pyaudioop

COPY . .
CMD ["python", "app.py"]

Sign up or log in to comment