I have been trying to add sound to my python code. I tried using playsound, pygame, pydub and tkinter but in vsc it doesn't let me install any using the command pip3 install pygame...(and so on) here I have tried it with pydub but this sais that there is no module named pydub and it doesn't let me install it. Can someone help me add this sound to my code?
from pydub import AudioSegment
from pydub.playback import play
psong = AudioSegment.from_mp3("song.mp3")
play(song)