gpt4 book ai didi

python - 从另一个目录导入文件

转载 作者:行者123 更新时间:2023-12-02 07:18:33 24 4
gpt4 key购买 nike

我有一个文件调用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 .请帮我。

最佳答案

使用 sys.path.append 附加您的 python 文件(模块所在的目录)。例如,如果您的 entryPoint.py 在地址目录中

import sys
sys.path.append('/path/to/your/module/address/')
import entryPoint

关于python - 从另一个目录导入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52149113/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com