我在执行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
模块添加到我的路径?
答案 0 :(得分:1)
根据错误消息,您的路径上已找到cythonUtilsPy
,但找不到子模块cythonUtilsPy.cythonUtils
。除非您导入错误的cythonUtilsPy
,否则您无法修复此路径。
如果cythonUtils
是cythonUtilsPy
目录,或者它遗漏了cythonUtils
,您需要追踪__init__.py
未显示为{{1}}子模块的原因。