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.
Asked
Active
Viewed 3,919 times
4

Peter Wildemann
- 465
- 4
- 13
2 Answers
14
try import eyed3
(without capital D)

thkang
- 11,215
- 14
- 67
- 83
-
Thanks, but it is this different on linux-platforms, since this was a popular and therefore probably working script? – Peter Wildemann Apr 16 '13 at 18:49