DLL加载失败:DLL文件的初始化失败

时间:2014-12-04 15:48:52

标签: python python-2.7 dll cython importerror

我收到以下消息

“DLL加载失败:DLL文件初始化失败”

当我尝试在Python脚本中导入我的模块helloworld.pyd时。该文件是通过运行此安装文件生成的

“” “setup.py” “”

from distutils.core import setup
from Cython.Build import cythonize

setup(
   ext_modules = cythonize("helloworld.pyx")
)

from the command prompt with

python setup.py build_ext --inplace

这里helloworld.pyx是一个包含

的pyx文件
print "Hello World"

我使用Python 7.2.1(64位)和Cython版本0.14.1

我的操作系统是Windows 7(64位)

我将非常感谢能得到的所有帮助!

谢谢!

0 个答案:

没有答案