nateraw / stable-diffusion-videos

Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts
Apache License 2.0
4.36k stars 417 forks source link

How to install & run this repo properly #126

Open iGadget73 opened 1 year ago

iGadget73 commented 1 year ago

Hey @nateraw, thatnks for providing your helpful repo to create videos! Me as an artist would love to have such a tool, but I'm not that familiar with python environments and setups, maybe thats why I'm struggling to get this thing here running locally. Starting the setup via pip install and running the file from examples/run_app.py results in errors which are due to a lack of _arpack, whatever that is. So I tried to clone the repo and run the setup.py, but this lacks of a command, whatever that might be. End of story, I'm stuck to get it running and since all stable diffusion installs need a model and what not, I think it's missing a huge part of the setup.

Could you or someone please update that, so i can run it locally to create music videos for my music?

nateraw commented 1 year ago

In a new virtual environment, pip install stable-diffusion-videos should work just fine. I use conda.

conda create -n sdv-env python=3.8 -y
conda activate sdv-env
pip install stable-diffusion-videos

You will need to have CUDA set up properly, which is probably the hardest problem here to solve for folks not used to doing that. There are plenty of tutorials online that show how to do that, though.

nateraw commented 1 year ago

@iGadget73 any update here? did you get it working?

I don't think there's any issue with this repo, I think perhaps your environment is a little messed up

Atomic-Germ commented 1 year ago

Have you tried pip install -U -e . in a clone of this repo? That might shed some light on where things are going off.

quintendewilde commented 1 year ago

@nateraw can you confirm this works on M1 MacOs, computers?