In the recent starterkit,
- evaluation_utils/live_export.py file is missing.
File “C:\MyProjectFolders\orak-2025-starter-kit-master_new\evaluation_utils\game_server_launcher.py”, line 10, in from evaluation_utils.live_export import live_export_enabled
ModuleNotFoundError: No module named ‘evaluation_utils.live_export’
1 Like
Hello @RickySong
Can you try making this change? 
- from evaluation_utils.live_export import live_export_enabled
- LIVE_EXPORT_ENABLED = live_export_enabled()
+ LIVE_EXPORT_ENABLED = False
if LIVE_EXPORT_ENABLED:
from evaluation_utils.live_export import EvaluationStateAggregator
else:
EvaluationStateAggregator = None
1 Like