ModuleNotFoundError: No module named 'livekit.agen...
# ask-ai
c
ModuleNotFoundError: No module named 'livekit.agents.telemetry' I tried to import as livekit-agents[deepgram,openai,cartesia,silero,turn-detector,elevenlabs,telemetry]==1.1.2 but it gives error
t
Thanks for reaching out, Yusuf. I'm an AI assistant and I'm here to help. Give me a moment while I research this topic.
It looks like the
livekit.agents.telemetry
module isn’t being found. No worries—let’s get this sorted out together! First, please make sure you’ve installed the package correctly by running this command:
Copy code
pip install "livekit-agents[deepgram,openai,cartesia,silero,turn-detector]~=1.0"
Once that’s done, you should be able to import the telemetry module like this:
Copy code
from livekit.agents.telemetry import *
If you’re still running into trouble, a quick uninstall and reinstall often does the trick. Just run:
Copy code
pip uninstall livekit-agents -y
Copy code
pip install "livekit-agents[deepgram,openai,cartesia,silero,turn-detector]~=1.0"
Hope this helps! Feel free to reach out if you need any more assistance. Sources: examples/voice_agents/requirements.txt