From d9fc2d499dd13b60eb82c85f7d9ddfd415abed03 Mon Sep 17 00:00:00 2001 From: Jan Minar Date: Tue, 4 Jun 2024 23:32:01 +0100 Subject: [PATCH] fix: ModuleNotFoundError: No module named 'ImageReward' missing requirements.txt dependency fixes the following issue: ``` [2024-06-04 22:26] Traceback (most recent call last): File "/workspace/comfyui_launcher_projects/comfyui-strimmlarns-aesthetic-score/comfyui/nodes.py", line 1879, in load_custom_node module_spec.loader.exec_module(module) File "", line 883, in exec_module File "", line 241, in _call_with_frames_removed File "/workspace/comfyui_launcher_projects/comfyui-strimmlarns-aesthetic-score/comfyui/custom_nodes/Endless-Nodes/__init__.py", line 7, in from .endless_nodes import * File "/workspace/comfyui_launcher_projects/comfyui-strimmlarns-aesthetic-score/comfyui/custom_nodes/Endless-Nodes/endless_nodes.py", line 52, in import ImageReward as RM ModuleNotFoundError: No module named 'ImageReward' ``` --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3d90aaa..9250107 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -colorama \ No newline at end of file +colorama +image-reward