找不到cython库

时间:2012-06-14 21:37:02

标签: python cython

我在执行python函数时发现了以下问题:

Traceback (most recent call last):
  File "/home/ppd/myfunc.py", line 2, in <module>
    from   cythonUtilsPy.cythonUtils import *
ImportError: No module named cythonUtils

如何将此cythonUtils模块添加到我的路径?

1 个答案:

答案 0 :(得分:1)

根据错误消息,您的路径上已找到cythonUtilsPy,但找不到子模块cythonUtilsPy.cythonUtils。除非您导入错误的cythonUtilsPy,否则您无法修复此路径。

如果cythonUtilscythonUtilsPy目录,或者它遗漏了cythonUtils,您需要追踪__init__.py未显示为{{1}}子模块的原因。