0

I recently downloaded Python 3.10 because I used 3.9. At first, everything worked fine. Sadly, I can't use installed libraries nor use newly downloaded ones, since I deleted Python 3.9. What can I do about this problem?

VSCode gives me this Error message:

Traceback (most recent call last):

  File "e:\XXXX\XXXX.py", line 5, in <module>

    from playsound import playsound

ModuleNotFoundError: No module named 'playsound'
Tugrul Ates
  • 9,451
  • 2
  • 33
  • 59

1 Answers1

1

You can check installed packages using this command:

pip freeze

or

pip list

Uninstall and install using command pip install <package-name>

Alasgar
  • 134
  • 9