error with building wheel #17283
-
|
i'm extremely new to all of this and i'm getting frustrated on how many errors i have been encountering just to install this. this is the latest error that pops up if anyone could help me with this i would be eternally grateful |
Beta Was this translation helpful? Give feedback.
Replies: 11 comments 29 replies
-
|
I'm getting the same issue and cant figure it out |
Beta Was this translation helpful? Give feedback.
-
|
same |
Beta Was this translation helpful? Give feedback.
-
|
This problem is also being observed! |
Beta Was this translation helpful? Give feedback.
-
|
We all here, even tho there is an answer for this (#17276), its still doesn't work for me |
Beta Was this translation helpful? Give feedback.
-
|
Win 10 had same issue, reinstalled exact version in guide to default C drive and added to PATH. Activate your venv: inside bash(cmd) git clone https://github.com/openai/CLIP.git Deactivate and run the launcher: ten try to launch, bat file and it worked. So no downloads and bat upgrades and stuff. |
Beta Was this translation helpful? Give feedback.
-
|
for someone still struggling here, try this worked for me. BTW, the root cause is Use of pkg_resources is deprecated. From here dgtlmoon/changedetection.io#2422 (comment) |
Beta Was this translation helpful? Give feedback.
-
|
The solution that worked for me was this: If it doesn't work with the commands from above, use these ones instead (these ones actually solved it for good for me): |
Beta Was this translation helpful? Give feedback.
-
|
I answered this question in issue #17201 : |
Beta Was this translation helpful? Give feedback.
-
|
Just switch to the dev branch, the clip error was fixed there. Easy! |
Beta Was this translation helpful? Give feedback.
-
|
clip_package = os.environ.get('CLIP_PACKAGE', "https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip") |
Beta Was this translation helpful? Give feedback.
-
|
Have to say, most of the answer are correct to get it installed correctly, seems complex it is really not, you just need to make sure follow each step exactly and take one error message at a time not just the last one. We working on a M4 install guide which should also work with intel system too. Mainly because of all the legacy issue and repos. On very import key is the repositories directory(if you don't have a working one, there going to be issues). |
Beta Was this translation helpful? Give feedback.
Win 10 had same issue, reinstalled exact version in guide to default C drive and added to PATH.
Then git clones the repo, not downloaded as a zip
Then did git fetch, git switch dev, git pull.
then runned webui-user.bat
when got ModuleNotFoundError: No module named 'pkg_resources' I did everythign from guide:
"Go to your Stable Diffusion folder:
D:\Stable Diffusion 1111\webui
In the address bar, type:
cmd
and press Enter (opens command prompt there)
Run this EXACT command:
venv\Scripts\python.exe -m ensurepip --upgrade
Then run:
venv\Scripts\python.exe -m pip install --upgrade pip setuptools wheel
his reinstalls the missing core tools (pkg_resources lives inside setuptools)."
it gave same …