[GUIDE] Local installation instructions (you will need a Nvidia GPU)

#3
by jbilcke-hf - opened

To run it locally you need a Nvidia GPU (maybe in the future Finetrainers will allow for alternative platforms like macOS etc, but for the moment this is not possible yet)

I suggest to install this specific version of Python using pyenv:

pyenv install 3.10.16

You will need the VideoModelStudio source code. You can get it from GitHub:

git clone [email protected]:jbilcke-hf/VideoModelStudio.git

cd VideoModelStudio/

Then create a virtual environment to install the dependencies, for instance:

python3.10 -m venv .venv

source .venv/bin/activate

python3.10 -m pip install -r requirements.txt

you will then be able to run the app locally, like so:

# (optional, only needed if you haven't done it yet for this terminal session)
# source .venv/bin/activate

python3.10 app.py
jbilcke-hf pinned discussion
jbilcke-hf changed discussion title from Local installation instructions (you will need a Nvidia GPU) to [GUIDE] Local installation instructions (you will need a Nvidia GPU)

Sign up or log in to comment