Amorano / Jovimetrix

ComfyUI node suite for composition, stream webcams or media files in and out, animation, flow control, making masks, shapes and textures like Houdini and Substance Designer, read MIDI devices. Also has colorization options for workflow nodes via regex, groups and each node.
Other
240 stars 20 forks source link

Can not install ffmpeg-python #11

Closed cjh1228 closed 9 months ago

cjh1228 commented 9 months ago

Collecting future (from ffmpeg-python->-r requirements.txt (line 5)) Using cached future-0.18.3.tar.gz (840 kB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error

× python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [6 lines of output] Traceback (most recent call last): File "", line 2, in File "", line 34, in File "C:\Users\chenyu\AppData\Local\Temp\pip-install-fczlsycb\future_a9bdc10971244508a59f8b8c30f36c38\setup.py", line 86, in import src.future ModuleNotFoundError: No module named 'src' [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip. error: metadata-generation-failed

× Encountered error while generating package metadata. ╰─> See above for output.

note: This is an issue with the package mentioned above, not pip. hint: See above for details.

Amorano commented 9 months ago

Using cached future-0.18.3.tar.gz (840 kB)

Seems your cached version of the module required by ffmepg-python wont install. I guess you can try a forced update yourself, but this isnt really a problem with my library, but a problem with pip or your cached modules for python.

To force an update, using the python from your comfy version:

python.exe -m pip install future --force-reinstall

you can also do this for any other packages, forcing them fully with something like:

pip install -I [package] pip install --ignore-installed [package]

HTH