Uminosachi / sd-webui-inpaint-anything

Inpaint Anything extension performs stable diffusion inpainting on a browser UI using masks from Segment Anything.
Apache License 2.0
1.03k stars 93 forks source link

No module named 'segment_anything' #54

Open sanasigma opened 1 year ago

sanasigma commented 1 year ago

image

Uminosachi commented 1 year ago

You can install it separately by activating the venv in the stable-diffusion-webui directory.

For Windows:

.\venv\Scripts\activate
pip install huggingface-hub
pip install diffusers
pip install segment-anything
pip install lama-cleaner
deactivate

For Linux:

source ./venv/bin/activate
pip install ...
deactivate