EVE:ModuleNotFoundError: No module named 'config' 📅 2026/7/28 15:18:28 官方教程https://docs.python-eve.org/en/stable/quickstart.html#database-interlude根据官网教程运行eve时【python run.py】出现了ModuleNotFoundError: No module named config的错误。只需要将run.py改为from eve import Eve app Eve(settings setting.py) if __name__ __main__: app.run()即可。