Search code examples
pythonwindowseyed3

Making the eyeD3-module available for import in python


On Windows, I have installed Python 2.7 and added python.exe's directory to PATH. Then I installed pip und used pip install eyeD3 to install the eyeD3 module successfully. However, using import eyeD3 doesn't work, but throws an ImportError. I had the idea to adjust the PYTHONPATH-environment-variable in my command line, but had no clue to what I would have to set it.


Solution

  • try import eyed3 (without capital D)