python相对导包问题
Posted justaman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python相对导包问题相关的知识,希望对你有一定的参考价值。
导包分为:绝对路径、相对路径
在测试时发现不能够使用相对路径
查过之后才知道:
运行模块(如:main.py)中导包只能使用绝对路径,不能使用相对路径
官方文档:
Note that relative imports are based on the name of the current module. Since the name of the main module is always
__main__
, modules intended for use as the main module of a Python application must always use absolute imports.
例子:
main.py
from pack.test import run
run()
test.py
from .sub_pack.sub_test import a
def run():
print(a)
sub_test
a = 1
项目中main.py才是主程序,所以只能有绝对路径;
而其他py文件中可以有绝对路径和相对路径
相对路径导入:
from . import method/attr/class,只能从__init__中导入函数/变量等
from .m1 import class1与 from m1 import class1等同,都是从同级导入
参考:
ModuleNotFoundError: No module named ‘__main__.xxxx‘
以上是关于python相对导包问题的主要内容,如果未能解决你的问题,请参考以下文章