gpt4 book ai didi

python - 从python中的不同文件夹导入文件

转载 作者:行者123 更新时间:2023-12-05 06:51:08 25 4
gpt4 key购买 nike

我正尝试从项目中的不同文件夹导入 .py,但出现了 Module not found 错误。请帮忙。

这是我的项目树。

PROJECT_name
+trnsvr
|
\--trn_db.py

+websvr
|
\--instance
|
--config.py
\--app
|
--__init__.py

trn_db.py 中我做了将 websvr.instance.config 导入为 conf

但是得到了如下的 ModuleNotFoundError

ModuleNotFoundError: 没有名为“websvr”的模块

我该如何解决这个问题?谢谢

最佳答案

尝试将其复制到 trn_db.py 中。我从 here 得到这个.

import sys
sys.path.insert(1, '../websvr/instance/')
import config as conf

关于python - 从python中的不同文件夹导入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66237137/

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