我有一个文件调用entryPoint.py:
from .commonLib.deviceLib import *
我有一个名为deviceLib.py:
import math
import sys
import logging
import requests
import this
class DeviceLib(object):
def __init__(self, connectionDb):
self.__db = connectionDb
树是这样的:
/test
entryPoint.py
/commonLib
__init__.py
deviceLib.py
当我执行时,python entryPoint.py我收到错误:Attempted relative import in non-package。请帮我。
梦里花落0921
相关分类