1

我在执行我的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模块添加到我的路径中?

4

1 回答 1

1

根据错误消息,它看起来cythonUtilsPy已经在您的路径上并且已找到,但未cythonUtilsPy.cythonUtils找到子模块。除非您导入了错误的cythonUtilsPy,否则您无法进行路径操作来解决此问题。

您需要找出为什么cythonUtils不显示为 的子模块cythonUtilsPy,如果cythonUtils是目录,则可能缺少__init__.py.

于 2012-06-14T21:51:10.980 回答