Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows 上,我安装了 Python 2.7 并将python.exe 的目录添加到 PATH。然后我安装了pip und usedpip install eyeD3来成功安装 eyeD3 模块。但是, usingimport eyeD3不起作用,而是抛出一个ImportError. 我有在命令行中调整PYTHONPATH-environment-variable 的想法,但不知道我必须设置什么。
pip install eyeD3
import eyeD3
ImportError
PYTHONPATH
尝试import eyed3(没有大写 D)
import eyed3
命名空间在 0.7 中更改为 eyed3,API 也是如此。在所有平台上。