我使用Python开发了一个Web服务。项目结构如下:
它在本地计算机上运行完美,但当我部署到服务器并尝试运行LogicImplementer.py
时,它会返回错误:
没有名为modules.BigQueryHandler
的模块
以下是LogicImplementer
import sys
sys.path.append("...")
import modules.BigQueryHandler as BQ
import scripts.DigINCacheEngine.CacheController as CC
import web
我已将__init__.py
添加到导入的每个目录中。