我目前正在开发一个用C#编写的应用程序,我正在嵌入IronPython
。
我要导入库music21
此库在PyScripter
上正常运行,但在IronPython
上却没有。我试过
import sys
sys.path.append(r"c:\python24\lib")
但它没有奏效。
我甚至尝试将music21
lib文件夹复制到IronPython
的lib中并输入IronPython
控制台:
from music import *
我收到下一个错误:
Traceback (most recent call last):
File "(stdin)", line 1, in (module)
File "C:\ProgramFiles\IronPython 2.7\Lib\music21\__init__.py", line 123, in (module)
KeyError: abc
我该怎么办?