没有名为" xyz"的模块在python 3.4中

时间:2015-04-02 12:18:22

标签: python python-3.x relative-path

我是python的新手所以这可能是一个错误的问题。我已经安装了python 3.4并且正在尝试将python 2.2的旧项目转换为python 3。

我的pythonpath为" C:\ ABC; C:\ XY"

我确实有以下结构: structure

在install.py中,有导入MiscUtils.Utils1.py的代码:

from MiscUtils import Utils1

但是在Utils1.py中,还有另一个代码可以导入Utils2.py:

from UserUtils import Utils2

当我执行install.py时,我收到以下错误:

"No module named Utils2" 

我尝试了许多东西,但它不起作用。如果我在Utils1.py中输入以下内容:

from .UserUtils import Utils2

我正在"No Module named MiscUtils.UserUtils"

如何正确导入所有这些模块 ?

0 个答案:

没有答案