Jump to content

Python Module Error

Wictorian

It says that module mutagen is not installed but it is installed, I double checked. My script isn't named mutagen.py I am not using the latest pip because it also gives an error but I think its not the issue anyways. Is there any chance you know why it might be happening?

 

Link to comment
Share on other sites

Link to post
Share on other sites

3 minutes ago, gabrielcarvfer said:

What OS? Do you have more than one python installation? To check that, open a command prompt/terminal and type "where python" or "whereis python". 

WINDOWS 10

 

There's actually 3. 

C:\Users\[Username]\AppData\Local\Programs\Python\Python39\python.exe
C:\Users\[Username]\AppData\Local\Programs\Python\Python38-32\python.exe
C:\Users\[Username]\AppData\Local\Microsoft\WindowsApps\python.exe

Link to comment
Share on other sites

Link to post
Share on other sites

Post. the. error. and. your. code.

 

The easiest trap to fall into when you have multiple versions of python installed is installing a module for one version and trying to run your script with another.

 

To make sure, pick one (e.g. 3.9) and use the handy py.exe shortcut:

py -3.9 -m pip install --user mutagen

py -3.9 your_script.py

 

Don't ask to ask, just ask... please 🤨

sudo chmod -R 000 /*

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×