根据python docs,自python 2.5起支持相对导入和intrapackage引用。我目前正在运行Python 2.7.3。所以,我试图在我自己的包中实现它,以便使用它进行更简单的导入。我很惊讶地发现它向我抛出了一个SyntaxError异常,我希望有人可以帮助引领这条道路。
我设置了一个测试目录进行测试:
tester
├── __init__.py
├── first_level.py
└── sub
├── __init__.py
└── second_level.py
__init__.py模块都是空的。其他模块是:
# first_level.py
print "This is the first level of the package"
# sub/second_level.py
import ..first_level
print "This is the second level"
当我尝试导入second_level模块时,出现以下错误:
Python 2.7.3 (default, Aug 1 2012, 14:42:42)
[GCC 4.2.1 Compatible Apple Clang 4.0 ((tags/Apple/clang-421.0.57))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Welcome!
>>> import tester
>>> import tester.sub.second_level
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "tester/sub/second_level.py", line 1
import ..first_level
^
SyntaxError: invalid syntax
我预计这两行会一个接一个地打印,但它会引发异常。那么,我做错了导入吗?你还有其它的想法吗。
答案 0 :(得分:4)
您无法导入此类模块。 import ..blah
无效的导入语法。您需要from .. import first_level
。
答案 1 :(得分:-1)
我通常会这样做:
import sys
sys.path.append("/home/me/tester")
import first_level
希望这会有所帮助。 〜奔