I am trying to set up my Raspberry Pi Zero to play a sound through a pimoroni audio board. I am trying to use playsound but keep getting the message "Import Error: cannot import name 'playsound' from 'playsound'"
. My program is a simple one using Python 3.7.3:
from playsound import playsound
playsound('file.mp3')
As suggested in a similar post, I have deleted Python 2.7 and loaded (reloaded) Python 3.7.3. I have tried uninstalling playsound and have loaded playsound using pip3. Pip3 list tells me I have playsound 1.2.2 loaded. I do not know what else to try.