This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
Hi, I'm trying to install the custom node comfyui-reactor-node on my Windows machine (Windows 10), unsuccessfully.
I installed (for ComfyUI standalone portable) following the instructions on the GitHub page:
- Installed VS C Build Tools
- Ran the install.bat, had an issue there with missing Cython package, installed Cython using command prompt: python_embeded\pyhon.exe -m pip install Cython, then re-ran install.bat , then had an issue with missing 'Pyhton.h' file and 'python312.lib' files, I located them and copied their folders to the 'ComfyUI\python_embeded' folder, and then the installation completed successfully.
But when I start ComfyUI, it fails to import the 'comfyui-reactor-node' custom node, and has this error:
ImportError: DLL load failed while importing mesh_core_cython: The specified module could not be found.
Does know how to install 'comfyui-reactor-node' on ComfyUI standalone portable on Windows? Or how to resolve this error?
I've tried:
- Deleting and re-downloading/extracting and updating my ComfyUI to the latest version.
- Moving ComfyUI to another drive (in case the issue was due to Windows security restrictions on C:\Program Files.)
Full error traceback:
Traceback (most recent call last):
File "C:\Program Files\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1735, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "C:\Program Files\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor-node\__init__.py", line 25, in <module>
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
File "C:\Program Files\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor-node\nodes.py", line 4, in <module>
from scripts.reactor_faceswap import FaceSwapScript, get_models
File "C:\Program Files\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor-node\scripts\reactor_faceswap.py", line 13, in <module>
from scripts.reactor_swapper import swap_face
File "C:\Program Files\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor-node\scripts\reactor_swapper.py", line 11, in <module>
import insightface
File "C:\Program Files\ComfyUI_windows_portable\python_embeded\Lib\site-packages\insightface\__init__.py", line 18, in <module>
from . import app
File "C:\Program Files\ComfyUI_windows_portable\python_embeded\Lib\site-packages\insightface\app\__init__.py", line 2, in <module>
from .mask_renderer import *
File "C:\Program Files\ComfyUI_windows_portable\python_embeded\Lib\site-packages\insightface\app\mask_renderer.py", line 8, in <module>
from ..thirdparty import face3d
File "C:\Program Files\ComfyUI_windows_portable\python_embeded\Lib\site-packages\insightface\thirdparty\face3d\__init__.py", line 3, in <module>
from . import mesh
File "C:\Program Files\ComfyUI_windows_portable\python_embeded\Lib\site-packages\insightface\thirdparty\face3d\mesh\__init__.py", line 9, in <module>
from .cython import mesh_core_cython
ImportError: DLL load failed while importing mesh_core_cython: The specified module could not be found.
Post Details
- Posted
- 1 year ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/comfyui/com...