1

trying to install audio diff for python 3.0 in visual studio code but getting an error message stating no matching distribution found for mutagen==1.21. I tried installing mutagen 1.21 got installed but still not able to install audiodiff.

ANOOP MP
  • 11
  • 1
  • 1
    I get a pretty long error message when I try to do the same, looks like they have a syntax error in the code for it: `except EnvironmentError, err:` results in `SyntaxError: invalid syntax` – Rolv Apneseth Jun 20 '21 at 15:19

1 Answers1

0

So, looking at this issue it looks like these libraries (mutagenwrapper and audiodiff) are written for Python2 so if you are using Python3 they won't work.

Luckily, it looks like @SteveClement has updated them to Python3 himself (thank you to this comment for pointing it out).

So, to install his versions of them:

pip install git+https://github.com/SteveClement/mutagenwrapper.git
pip install git+https://github.com/SteveClement/audiodiff.git

I can't test these but let me know if this works for you.

Rolv Apneseth
  • 2,078
  • 2
  • 7
  • 19