locally using docker

#2
by Clausss - opened

is possible to using this locally using docker?

Hello,

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 suppose you can use Docker, but you will probably getter better performance and flexibility by running directly the app in native Python.

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

thank you very much

Clausss changed discussion status to closed

Sign up or log in to comment