so this is the code i have been writing and saw it on a video tutorial on making a voice assistant, i copied the code exactly the same as the video but it just keeps popping up saying 'no module named playsound' but i have downloaded it in the command prompt window
below is my code
import os
import time
from playsound import playsound
import speech_recognition as sr
from gtts import gTTS
def speak(text):
tts = gTTS(text=text, lang="en")
filename = "voice.mp3"
tts.save(filename)
playsound.playsound(filename)
speak("hello danny") `
any idea on what to do?