You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nunchaku 0.3.1 depends on facexlib. facexlib depends on filterpy. filterpy doesn't install.
I get this:
E:\SwarmUI\dlbackend\comfy\python_embeded>python -m pip install filterpy
Collecting filterpy
Using cached filterpy-1.4.5.zip (177 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 "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 35, in <module>
File "C:\Users\xxxxxxxx\AppData\Local\Temp\pip-install-gqa6ppn2\filterpy_2e4d41befb8a4e9abf284ec28a7e6d59\setup.py", line 4, in <module>
import filterpy
ModuleNotFoundError: No module named 'filterpy'
[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.
Basically it says that the filterpy installer is trying to import the module filterpy, and it's not working, and I have no idea why.
But I was able to manually remove the import filterpy line from the setup.py file that came with filterpy. Then setup.py successfully ran.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Nunchaku 0.3.1 depends on
facexlib
.facexlib
depends onfilterpy
.filterpy
doesn't install.I get this:
Basically it says that the
filterpy
installer is trying to import the modulefilterpy
, and it's not working, and I have no idea why.But I was able to manually remove the
import filterpy
line from thesetup.py
file that came withfilterpy
. Thensetup.py
successfully ran.Instructions:
setup.py
file:import filterpy
with the#
characterversion=filterpy.__version__,
withversion="1.4.5",
python C:\xxxxxxxx\setup.py
Beta Was this translation helpful? Give feedback.
All reactions