我编译了一些Cython代码和 在Python脚本中调用它。 直到最近才开始工作。现在不行 再工作并给出错误
ImportError:DLL加载失败:DLL文件的初始化失败。
我在Win7 64Bit,Anaconda发行版2.0.1上。重新编译Cython代码没有帮助。
import time
import Implied_Vola
underlyingPrice=5047
strikePrice=4600
interestRate=0.03
daysToExpiration=218
price=724.5
optiontype='Call'
start=time.time()
vola= Implied_Vola.Implied_Vola(underlyingPrice,strikePrice,interestRate,daysToExpiration,price,optiontype)
end=time.time()
time=float(end-start)
知道该怎么办?如何检查它是否使用Windows SDK进行编译以及如何在Ipython中检查Cython版本?